body{
    background: linear-gradient(270deg, #174b6e, #9af1f5);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 20s ease infinite;
    -moz-animation: AnimationName 20s ease infinite;
    animation: AnimationName 20s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.main {
    height: 100vh;
    /* width: 100vw; */
    background-image: url('./img/v2-bg.jpg');
    background-position: top;
    background-size: cover;
    /* background-size: contain; */
    /* border: 1px solid red; */
    /* padding-top: 250px; */
}

.phone{
    color: #fff;
    font-size: 22px;
    text-shadow: 0 0 5px #000;
    text-align: right;
}
.phone a, .phone a:hover {
    color: #000;
    text-decoration: none;
    text-shadow: none;
    padding: 15px 45px;
    margin: 15px;
}
.container {
    max-width: 700px !important;
}

.logo {
    text-align: center;
    /* padding-top: 80px; */
    /* padding-left: 90px !important; */
}

.age-limit{
    position: relative;
    top: -120px;
    /* z-index: 2; */
    /* top: -100px; */
    /* left: 500px; */
    right: 0;
    /* left: 80%; */
    /* margin-left: 250px; */
    text-align: end;

}

.pedestal {
    display: flex;
    /* flex-direction: row; */
    justify-content: center;
    align-items: center;
}

.freedays, .prize-text {
    background-color: rgba(0,0,0,0.7);
    /* opacity: 60%; */
    padding: 15px;
    border-radius: 15px;
    border: 5px solid #00E6DB;
    color: #fff;
    margin: 10px 0;
}
.freedays  img{
    opacity: 0.7;
}
.freedays-big{
    font-size: 22pt;
}
.freedays-small{
    font-size: 14pt;
}

.pedestal > div{
    padding: 20px;
}

.prize-text p {
    text-align: center;
}

.buttons{
    display: flex;
    margin-top: 20px;
    justify-content: center;
}
.buttons > div{
    margin: 10px 20px;
}


@media (max-width: 992px) { 
    .logo img.admiral{
        width: 75%;
    }
    .buttons a{
        font-size: 12px;
    }
}
@media (max-width: 576px) { 
    .logo img.admiral{
        width: 90%;
    }
    .buttons a{
        font-size: 12px;
    }
    .phone{
        font-size: 14px;
    }
}
