@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('../img/main.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    color: #fff;
    font-size: 18px;
    z-index: 1;
}

.cursor {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: pulsate 1s infinite;
    z-index: 0;
}

@keyframes pulsate {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}


.container {
    max-width: 1140px;
    margin: 0 auto;
}

@media (max-width: 1140px) {

    .footer__content,
    .container {
        margin: auto 25px !important;
    }
}

@media (max-width: 768px) {
    .content__text h1 {
        font-size: 36px !important;
    }

    body {
        font-size: 14px !important;
    }
}

@media (max-width: 454px) {

    .footer__top {
        display: block !important;
    }

    .footer__text {
        margin-bottom: 20px;
        width: 100% !important;
    }

    .footer__content,
    .container {
        margin: auto 10px !important;
    }

    .content__timer #date {
        font-size: 20px !important;
    }

    .content__timer #timer {
        font-size: 26px !important;
    }
}

a {
    color: #fff;
    text-decoration: none;
}

.header {
    margin-top: 50px;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo a svg {
    height: 100px;
    width: 100px;
}

.header__button a {
    background-color: #fff;
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 18px;
    color: #000;
    transition: 0.3s;
    border: 1px solid transparent;
}

.header__button a:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.content {
    margin-top: 100px;
}

.content__text {
    text-align: center;
}

.content__additionally {
    margin-top: 50px;
}

.content__additionally img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.content__additionally h2 {
    margin-bottom: 10px;
}

.content__additionally p {
    margin-bottom: 10px;
}

.content__additionally h3 {
    margin-bottom: 10px;
}

.content__text h1 {
    font-size: 50px;
}

.content__text p {
    margin-top: 10px;
}

.content__timer {
    margin-top: 50px;
}

.content__timer #date {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.content__timer #timer {
    font-size: 40px;
    background-color: #fff;
    padding: 10px 25px;
    border-radius: 15px;
    color: #000;
    width: fit-content;
    margin: 0 auto;
}

.footer {
    margin-top: 100px;
    margin-bottom: 30px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer__text {
    width: 50%;
}

.footer__payment {
    display: flex;
}

.footer__item {
    margin-right: 20px;
}

.footer__item:last-child {
    margin-right: 0;
}

.footer__item svg {
    height: 50px;
    width: 50px;
}

.footer__bottom {
    text-align: center;
}