* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

header {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    /* background: url(./images/landscape.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0%, 100%; */
}

header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, black, rgba(0, 0, 0, 0));
}

nav,
.header-bottom {
    display: flex;
    justify-content: space-between;
    padding: 24px 32px;
    position: relative;
}

nav .logo img {
    width: 48px;
    height: auto;
}

nav .btn-about {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    font-weight: 300;
    height: 42px;
    width: 88px;
    border-radius: 50px;
    transition: 0.5s;
}

nav .btn-about:hover {
    background-color: rgb(255, 254, 254);
    color: black;
}

header .header-tittle {
    margin: auto;
    font-size: 58px;
    position: relative;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 99;
}

header .today-date {
    font-size: 24px;
    font-weight: 500;
}

header .today-date span {
    font-size: 16px;
}

header .social-media {
    display: flex;
    list-style: none;
    width: 300px;
    justify-content: space-between;
    align-items: center;
}

header .social-media li a {
    color: white;
    font-size: 18px;
}


/* ABOUT SECTION */

.about {
    background-color: black;
    width: 100%;
    padding: 200px 0;
}

.about-container {
    width: 75%;
    margin: auto;
}

.image-gallery {
    display: flex;
    width: 100%;
    min-height: 500px;
    justify-content: space-between;
    margin-bottom: 32px;
}

.image-box {
    width: 23%;
    height: 400px;
    position: relative;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: 0.7s;
}

.image-box img:hover {
    opacity: 0.5;
    transform: translateY(-10px);
}

.image-box:nth-child(odd) {
    align-self: flex-end;
}

.about-info {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

/* FOOTER */
footer {
    width: 100%;
    padding: 24px;
    text-align: center;
    font-size: 16px;
}

/* RESPONSIVE */
@media only screen and (max-width: 768px) {
    .about-container {
        width: 90%;
    }

    .header-bottom {
        justify-content: center;
    }

    .today-date {
        display: none;
    }

    .social-media {
        width: 100%;
    }

    .image-gallery {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .image-box {
        width: 100%;
        height: 400px;
        margin: 16px 0;
    }

    header .header-tittle {
        font-size: 38px;
    }

    .about-info {
        font-size: 12px;
    }

    footer {
        font-size: 12px;
    }

    header .social-media li a {
        font-size: 12px;
    }
}