@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

body{
    font-family: 'Poppins','Roboto',sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background-color: black;
}



.navbar{
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid white;
}

img{
    height: 7vh;
    margin: 5px;
}

.siteTitle {
    color: white;
    font-size: 30px;
    font-weight: 666;
    text-decoration: none;
}

.links{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.navLinks{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    width: 7vw;
}

.navLinks{
    text-decoration: none;
    color: white;
    font-weight: 666;
    font-size: 20px;
    margin-right: 10px;
    
}

.navLinks:hover{
    background-color: white;
    color: black;
    border-radius: 5px;
}

.mobileMedia{
    width: 99%;
    text-align: center;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    
}

.mlinks{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.mLinks{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 30vw;
    text-decoration: none;
    font-size: 25px;
    color: black;
    font-weight: 666;

}

.content{
        min-height:65vh;
        max-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

    }

h1{
    background-color:white;
    text-align: center;
    padding: 0px 10px;
    margin: 3px;
    border-radius: 5px;
    
}

p{
    color: white;
    text-align: center;
    padding: 0px 10px;
    margin: 10px;
    font-size: 20px;
}

h2{
    font-size: 25px;
    color:white;
    padding: 2px 10px;
    margin: 10px;
    border: 1px solid white;
    border-radius: 5px;
    text-align: center;
    min-width: 22vw;
    max-width: auto;
    
}

h3{
    background-color: white;
    padding: 0px 10px;
    border-radius: 3px;
    
}

.storyDesc{
    color: white;
    font-size: 25px;
}

.footer{
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid white;
    
}

strong{
    padding: 0px 5px;
}

form{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 30vw;
    background-color: white;
    border-radius: 5px;
    height: 15vh;
}

.like , .dislike{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}

.count{
    min-width: 5vw;
    max-width: auto;
    background-color: black;
    font-size: 20px;
    color: white;
    text-align: center;
    border-radius: 3px;
}

.thumbs{
    cursor: pointer;
}


.privacyPrivacy{
    color: white;
    font-size: 30px;
    font-weight: 666;
    text-decoration: none;
    
}


i{
    font-size: 50px;
    cursor: pointer;
}

.dailouge{
    color: red;
}


#ajunBtn{
    padding: 0px 10px;
    font-size: 20px;
    border-radius: 3px;
    margin: 10px;
    cursor: pointer;
}

#noBorder{
    border: none;
    font-size: 22px;
    width: 90vw;
}

.storyRead{
    text-decoration: none;
    color: red;
    font-weight: 666;
}




@media (max-width:600px) {
    .navbar{
        justify-content: space-between;
    }

        .mobileMedia{
            display: block;
            flex-direction: row;
            border-radius: 5px;
            width: 95vw;
            }

 .mlinks{
    display: flex;
    align-items: center;
    justify-content: space-around;
    
    padding:5px;
    

}

.mLinks{
    text-decoration: none;
    color:black;
    font-size: 18px;
    font-weight: 666; 
    
}



    h1{
        width: 95vw;
        font-size: 26px;
    }

    h2{
        font-size: 20px;
        width:95vw;

    }

        .privacyPrivacy{
         font-size: 20px;
         margin: 0px;
    }


    form{
        width: 95vw;
    }

    .likes ,.dislike{
        width: 30vw;
    }
    

    
}

