@font-face {
    font-family: 'Inter';
    src: url(../font/Inter-VariableFont_opsz\,wght.ttf);
}
*{
    font-family: 'Inter';
}
body, html{
    margin: 0;
    padding: 0;
    background: url(../img/bg.jpg), #000000;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}
.premium-header{
    width: 100%;
    display: flex;
    justify-content: center;
}
.premium-container{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.premium-container h5{
    color: #f0f0f0;
    font-size: 22px;
    font-weight: 400;
}
.premium-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.premium-content h6{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    border-radius: 70px;
    background-color: #000000;
    border: 2px solid #FFD700;
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0;
}
.premium-content p{
    color: #f0f0f0;
    font-size: 16px;
    font-weight: 400;
}
.premium-content h2{
    color: #f0f0f0;
    font-size: 70px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0;
}
.premium-content h4{
    color: #f0f0f0;
    font-size: 22px;
    font-weight: 400;
    width: 650px;
}
.features-list{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
}
.feature-item{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.feature-item img{
    width: 70px;
    height: fit-content;
    margin-left: 20px;
    margin-right: 20px;
}
.feature-item h3{
    color: #f0f0f0;
    font-size: 20px;
    font-weight: 400;
}
.casino-offer{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 100px;
}
.offer-container{
    width: 90%;
    height: 284px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border: 2px solid #FFD700;
    border-radius: 30px;
    background-color: rgb(4, 155, 179);
}
.offer-container .pc{
    width: 570px;
    height: fit-content;
}
.offer-container .mob{
    display: none;
}
.offer-details{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.offer-details h6{
    width: 242px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 2px solid #FFD700;
    background: #000000;
    font-size: 16px;
    font-weight: 400;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 0;
}
.offer-details h3{
    font-size: 32px;
    font-weight: 600;
    color: #f0f0f0;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.offer-details a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 55px;
    background: #FFD700;
    border-radius: 30px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    border: 2px solid rgb(5, 5, 86);
}
.offer-details h5{
    font-size: 18px;
    font-weight: 300;
    color: #DDDDDD;
    margin-bottom: 0;
    margin-top: 20px;
}
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    height: 70px;
    background-color: rgb(4, 155, 179);
    margin-top: 100px;
}
footer p{
    font-size: 20px;
    font-weight: 300;
    color: #f0f0f0;
    text-align: center;
}





@media screen and (max-width: 900px){
    .premium-content h2{
        font-size: 27px;
    }
    .premium-content h4{
        width: 400px;
    }
    .features-list{
        flex-direction: column;
        align-items: start;
    }
    .feature-item img{
        margin-left: 0;
        margin-right: 30px;
    }
    .feature-item{
        margin-bottom: 40px;
    }
    .offer-container .pc{
        display: none;
    }
    .offer-container .mob{
        display: flex;
        width: 287px;
        height: fit-content;
    }
    .offer-container{
        width: 380px;
        height: 584px;
        flex-direction: column;
    }
    .offer-details h3{
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    footer p{
        font-size: 18px;
        width: 400px;
    }
}