@font-face {
    font-family: "AKONY";
    src: url('../fonts/AKONY.woff2') format("woff2");
}
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-style: none;
    user-select: none;
    border: 0;
    font-family: "AKONY";
}
body{
    background-color: #1f1b20;
}
.main{
    min-height: 100vh;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main__btn{
    color: white;
    font-size: 22px;
    padding: 15px 30px;
    padding-bottom: 10px;
    border-radius: 25px;
    background: none;
}
.main__btn__red{
    color: #d41b20;
}
.footer{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 15vh;
    left: 0;
    z-index: -1;
}
.footer__img{
    max-width: 15%;
}

/* Table */
@media only screen and (min-width: 767px) and (max-width: 1024px) {
    .footer{

        bottom: 10vh;
    }
    .footer__img{
        max-width: 40%;
    }
}

/* Phone */
@media only screen and (max-width: 767px) {
    .footer{

        bottom: 5vh;
    }
    .footer__img{
        max-width: 70%;
    }
}