@import "globals.css";

.header {
    width: 100%;
    height: 80px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .header-logo {
    max-width: 50px;
}

.header .menu {
    display: flex;
}

.header .menu a {
    padding: 0.8rem 1rem;
    color: white;
    font-size: 16px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    background-image: url(../images/btn-bg.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 10px;
    text-shadow: 0px 0px 5px #000000;
}


.main {
    display: flex;
    flex-direction: column;
    background: url(../images/bg.webp);
    background-size: cover;
    min-height: calc(100vh - 80px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.main .main-logo {
    width: 100%;
    max-width: 250px;
}

.main .main-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 2.5rem;
}

.main .main-images .main-img {
    width: 100%;
    max-width: 320px;
    z-index: 2;
}

.main .main-images .text-img {
    width: 100%;
    max-width: 400px;
    margin-top: -120px;
    z-index: 2;
}

.main .main-images .overlay-img {
    width: 100%;
    position: absolute;
    top: -15px;
}

.main .main-btn {
    padding: 0.8rem 1rem;
    color: white;
    font-size: 16px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    background-image: url(../images/btn-bg.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 10px;
    text-shadow: 0px 0px 5px #000000;
    max-width: 250px;
    font-size: 24px;
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    line-height: 32px;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.75);
    -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
    animation: pulsate-fwd 0.5s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}