
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;700&display=swap');

* {
    padding: 0%;
    margin: 0px;
}

:root {
    --main-clr : rgb(133, 0, 0);
}

body {
    font-family: 'Merriweather Sans', sans-serif;
    color: var(--main-clr);
}

html {
    background-image: url(/project/public/phonk.png);
    background-repeat: repeat-y;
    background-size: cover;
    height: 100%;
    position: relative;
    width: 100%;
}


html::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0px;
    z-index: -1;
    backdrop-filter: blur(10px);
}



.B-text {
    font-weight: 700;
}

.SB-text {   
    font-weight: 300;
}

li {
    list-style: none;
}
a {
    text-decoration: none;
}

.container {
    margin-left: auto;
    margin-right: auto;
}
    
    @media (min-width: 480px) {
        .container {
            max-width: 480px;
            
        }
    }
    @media (min-width: 768px) {
        .container {
            max-width: 768px;
        }
        
        
    }
    @media (min-width: 976px) {
        .container {
            max-width: 976px;
        }
    }
    @media (min-width: 1440px) {
        .container {
            max-width: 1440px;
        }
    }



    .list {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px 4rem;
        
    }

    .center {
        margin-top: 10rem;
        color: black;
        text-align: center;
        padding-top: 10rem;
        background-color: #fff;
        height: 30rem;
        width: 30rem;
        border: solid rgb(0, 0, 0);
        transition: all ease-in-out .3s;
        border-radius: 30px;
    }

    .center .theList {
        padding-top: 5rem;
    }

    .center .theList li {
        padding-top: 4px;
        padding-bottom: 4px;
    }



.list .remove-bg {
    border: solid 2px white;
    background: rgb(48, 44, 44);
    color: white;
}





.btn {
    margin: 3rem 1.5rem;
    height: 3rem;
    width: 5rem;
    padding: .5rem 1rem;
    border: none;
    border-radius: 3rem;
    background-color: rgb(0, 0, 0);
    font-weight: 700;
    color: white;
}




.dark-btn {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
    
    .center {
        margin-top: 1rem;
    }
    .btn {
        margin: 1rem 1.5rem;
    }
}


marquee {
    color: white;
    top: 30rem;
    position: absolute;
    font-size: 100px;
    font-weight: 700;
    
}