body {
    margin: 0;
    overflow: hidden;

}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #02001D;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

img{
    max-width: 100%;
    max-height: 100vh;
    display: block;
}

.main-link {
    position: relative;
    text-decoration: none;
}


.privacy {
    font-size: 2vh;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 10px;
    color: white;
    text-decoration: none;
}

.descr {
    margin: 0;
    text-align: center;
    margin-bottom: 5px;
    text-decoration: none;
    color: white;
}

.bottom-link {
    cursor: pointer;
    margin-right: 20px;
}

.btn-wrap{
    position: absolute;
    bottom: 60px;
    left: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 70px;
    background-color: #A335F9;
    border-radius: 25px;
    animation: pulse 1.5s infinite linear;
    box-shadow: 0 0 10px #fff;
}

.btn{    
    padding: 15px 5px;
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
  
  
@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 30px #fff;
    }

    30% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 10px #fff;
    }

    60% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 30px #fff;
    }

    to {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 30px #fff;
    }
}

@media (max-width: 400px) and (min-height: 600px) {
    .privacy {
        font-size: 4vw;
    }
}

@media (max-width: 320px) and (min-height: 500px) {
    .privacy {
        font-size: 4vw;
    }
}