* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #74EBD5, #9FACE6);
    color: #fff;
    overflow-x: hidden;
}

.header {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: white;
    border-bottom: 3px solid #D5C8C8;
    width: 100%;
    overflow: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}

.navbar {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
    padding: 5px 0;
    width: 100%;
    height: 35px;
}

.navbar .nav-link:hover {
    color: #FF6347;
    transform: scale(1.05);
}

.navbar .nav-link {
    text-decoration: none;
    font-size: 16px;
    color: #1E2022;
    cursor: pointer;
    font-weight: bold;
    font-family: 'outfit', verdana, lucida;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    background: none;
    border: none;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.logo {
    max-width: 1700px;
    height: auto;
    margin-left: 110px;
    
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background-color: white;
    border-top: 3px solid #D5C8C8;
    font-family: 'Inter', verdana;
    font-size: 0.9rem;
    color: #1E2022;
    width: 100%;
    margin-top: auto;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
    margin-top: 3px;
}

.social-media img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease-in-out;
}

.footer p {
    margin-top: 1px;
}

.main {
    position: relative; /* Ensure positioning context for child elements */
    width: 100%;
    height: 100vh;
}

.background-shapes {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Ensure shapes stay behind content */
    overflow: hidden;
    pointer-events: none; /* Prevent shapes from blocking interactions */
}

.header, .content, .footer {
    position: relative; 
    z-index: 1; /* Ensure these elements are above the background shapes */
}

/* Ensure content has a higher z-index */
.header, .content, .footer {
    z-index: 1; /* These elements will stay in front of the shapes */
}

.shape {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.25); 
    background: none;
    border-radius: 0; 
}

/* Circles */
.shape.circle {
    border-radius: 50%;
}

/* Squares */
.shape.square {
    border-radius: 0;
}

/* Triangles */
.shape.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 255, 255, 0.25); /* Semi-transparent triangle */
}


@media (max-width: 480px) {
    .header {
        padding: 3px;
    }

    .navbar {
        gap: 3px;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-link {
        font-size: 10px;
        padding: 1px 1px;
    }

    .content {
        min-height: calc(100vh - 50px);
    }

    .logo { 
         max-width: 1200px; 
         width: 100%; 
         height: auto; 
         margin-left: 130px;
        }

    .footer {
        padding: 5px;
        font-size: 0.8rem;
    }

    .social-media img {
        width: 20px;
        height: 20px;
    }

    .shape {
        width: 50px; /* Adjust size for smaller screens */
        height: 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .logo { 
        margin-left: 75px; 
        width: 1500px; 
        height: 100px;
    }

    .content {
        min-height: calc(100vh - 180px);
    }

    .footer {
        padding: 5px;
        font-size: 0.8rem;
    }

    .social-media img {
        width: 20px;
        height: 20px;
    }

    .shape {
        width: 60px; /* Adjust size for smaller screens */
        height: 60px;
    }
}
