*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 65%;
    overflow-x: hidden;
}

body {
    background: #89CFF0;
    color: #ffffff;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

/* Navbar */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: #89CFF0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 600;
    cursor: default;
}

#menu-icon {
    font-size: 3.6rem;
    color: #ffffff;
    display: none;
}

.navbar a {
    font-size: 1.7rem;
    color: #ffffff;
    margin-left: 4rem;
    transition: 0.3s;
}

.navbar a:hover {
    color: #2980a8;
}

/* Home page */

.home {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content h1 {
    font-size: 7rem;
    margin-bottom: 1rem;
}

.home-content p {
    font-size: 2rem;
    margin-bottom: 2rem;

}

.button {
    display: inline-block;
    text-align: center;
    padding: 1rem 3rem;
    background: #ffffff;
    border-radius: 4rem;
    font-size: 2rem;
    color: #89CFF0;
    font-weight: 600;
    box-shadow: none;
}

.button:hover {
    color: #2980a8;
    box-shadow: 0 0 2rem #2980a8;
    transition: 0.5s ease;
}

.container {
    text-align: center;
}

.image img {
    width: 25vw;
    height: auto;
    margin-left: 5rem;
}

/* Gallery */

.gallery {
    padding-top: 0;
    padding-bottom: 0;
    min-height: min-content;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 5rem;
    max-width: 110rem;
    margin: 0 auto;
}

.gallery h2 {
    font-size: 7rem;
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.gallery-item img {
    max-width: 100%;
    height: 27rem;
    object-fit: fill;
    width: 100%;
    border-radius: 28px;
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
}

.gallery-item img:hover {
    box-shadow: 0 0 2rem #2980a8;
    transform: translateY(-5px) scale(1.03);
}

/* Social media links */

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: min-content;
    padding-bottom: 10rem;
}

.social-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 30rem;
}

.social-content a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.5s ease;
}

.social-content a:hover {
    color: #2980a8;
    transform: translateY(-5px) scale(1.03);
}

@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }

    .image img {
        width: 30vw;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .home-content h1 {
        font-size: 6rem;
    }

    .image img {
        width: 35vw;
        margin-left: 3rem;
    }

    .gallery h2 {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0 3% 0 3%;
        background: #89CFF0;
        border-top: 0.1rem solid rgba(41, 128, 168, 0.1);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
        display: block;
        height: 0; 
        overflow: hidden; 
        transition: height 0.3s ease;
    }

    .navbar.active {
        height: 25vh;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    .home {
        flex-direction: column;
    }

    .home-content {
        text-align: center;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-content p {
        padding: 0 1rem 0 1rem;
    }

    .image img {
        width: 65vw;
        margin-top: 4rem;
        margin-left: 0;
    }

    .gallery-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gallery-item img {
        width: 100%; 
        max-width: 50rem; 
        height: auto;
        margin-left: 0;
        padding: 0 1rem 0 1rem;
    }

    .gallery h2 {
        font-size: 5rem;
        text-align: center;
    }

    .social-content {
        gap: 10rem;
    }

    .social-content a i {
        font-size: 5rem; 
    }

}