﻿/* BANNER */
.banner {
    position: relative;
    height: 100vh;
    width: 100%;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-inline: 2rem;
}

.banner-content h1 {
    margin: 0;
    color: var(--white);
    font-size: 6rem;
    font-weight: 700;
    text-align: center;
}

.banner-content h4 {
    margin: 0;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
}

.banner-scroll {
    position: absolute;
    left: 50%;
    bottom: 7rem;
    transform: translateX(-50%);
    display: flex;
    gap: 1.6rem;
    align-items: center;
    flex-direction: column;
}

.banner-scroll h6 {
    margin: 0;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
}

.banner-scroll img {
    width: 40px;
    height: auto;
    animation: bounce 0.6s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

@media screen and (max-width: 600px) {
    /* FONT SIZE 6rem -> 4rem*/
    .banner-content h1 {
        font-size: 4rem;
        letter-spacing: -.2rem;
    }
    
    /* FONT SIZE 2.4rem -> 2.2rem */
    .banner-content h4 {
        font-size: 2.2rem;
    }
}