/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #911a1c;
    color: white;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Main Content Center */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.center-content img {
    max-width: 100%;
    height: auto;
    height: auto;
    width: 60%; 
}

/* Top Left: Ainin and +assocs */
.top-left {
    position: absolute;
    top: 5%;
    left: 7%;
    text-align: left;
}

.top-left img {
    max-width: 100%;
    height: auto;
    height: auto;
    width: 70px; 
}

/* Top and Bottom Corners Plus Signs */
.top-right, .bottom-left {
    position: absolute;
    width: .5cm;
    height: .5cm;
}

.top-right {
    top: 5%;
    right: 7%;
}

.bottom-left {
    bottom: 10%;
    left: 7%;
}

.plus {
    width: 100%;
    height: 100%;
    position: relative;
}

.plus::before, .plus::after {
    content: '';
    position: absolute;
    background: white;
}

.plus::before {
    width: 100%;
    height: 20%;
    top: 40%;
    left: 0;
}

.plus::after {
    height: 100%;
    width: 20%;
    top: 0;
    left: 40%;
}

/* Bottom Right: Rhombus */
.bottom-right {
    position: absolute;
    bottom: 10%;
    right: 7%;
}

.bottom-right img{
    max-width: 100%;
    height: auto;
    height: auto;
    width: 25px; 
}

/* Vertical Text Container */
.vertical-text {
    position: absolute;
    right: 7%;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    text-align: right;
    width: auto;
}

/* Image Styling */
.vertical-text img {
    display: block;
    max-width: 100%; 
    height: auto;
    width: 10px; 
}


/* Footer Icons */
footer {
    position: absolute;
    bottom: 15%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1); 
}

@media (max-width: 768px) {
    .center-content img {
       width: 100%;
    }
    .vertical-text img {
        width: 6px;
       
    }
    

}
