*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
html body{
    max-width: 100%;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    background-color: transparent;
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    width: 10px;
    height: 10px;
    background-image: linear-gradient(90deg, #9255CE -2.17%, #be60ff 100%);
    border-radius: 50px;
}
.header img{
    width: 250px;
}
.main-section{
    padding-bottom: 70px;
}
.main-section .link{
    color: initial;
    text-decoration: none;
}
.iptv-div{
    margin-top: 60px;
}
.iptv-div h4{
    padding-block: 20px;
}
.iptv-btn{
    background-color: #ec7324;
    color: white;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 900;
    font-family: "Urbanist", sans-serif;
    text-transform: capitalize;
    padding: 10px 31px;
    border-radius: 4px;
    transition: 0.4s ease-in-out;
}
.iptv-btn:hover{
    color: white;
}
.iptv-btn::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    transform: translate(1px, 10px);
    z-index: -1;
    border-radius: 4px;
    transition: 0.4s ease-in-out;
}
.iptv-btn:hover::after {
    transform: translateY(0);
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/* Responsiveness */
@media screen and (max-width: 767px){
    .header img{
        width: 120px;
    }
    .iptv-div img{
        width: 80%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .iptv-div h4{
        font-size: 17px;
    }
    .iptv-btn{
        padding-inline: 10px;
    }
}

