@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{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    
    
}

header{
    width:100%;
}

.navbar{
    background-color: #FFCC00;
    /* background-color: black; */
    height:10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.website-logo{
    height: 20vh;
    width: 10vw;
    
}

.media-navbar-website-logo{
    display: none;
}


.website-logo:hover{
    transform: scale(1.15); /* Slight zoom effect on hover */
}

.website-name{
    font-size: 30px;
    font-weight: 600;
}


.media-navbar-button{
    display: none;
}

.media-navbar{
    display: none;
}

.nav-links{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    
}

.nav-link{
    list-style: none;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover{
    font-weight: 800;
}

a{
    text-decoration: none;
    color: black;
    font-size: 20px;
}

main{
    min-height: 80vh;
    
    width: 100%;
    display: flex;
    align-items: center;
    
    
}

.blog-container{
    margin: 10px 5px;
    height: auto;
    width: 100%;
}


.section-container{
    display: flex;
    align-items: center;
    justify-content: space-between;

    
    
}


.post-content{
    background-color: #FFCC00;
    height:70vh;
    width:25vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 5px;
    border: 2px solid black;
}

.post-content-text{
    height: 70vh;
    width: 70vw;
    border: 2px solid black;
    border-radius: 5px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}


.post-content-text-h2{
    margin:10px;
}

.post-content-text-p{
    padding: 10px;
}

.jaap{
    font-size: 30px;
    margin-top:10px;
    background-color: black;
    padding: 3px 25px;
    color: #FFCC00;
    border-radius: 5px;
    border: 2px solid white;
}

.counter{
    width: 20vw;
    height:40vh;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-weight: 700;
    border: 2px solid black;
}

button{
    padding: 5px 15px;
    margin-bottom: 10px;
    font-weight: 666;
    font-size: 20px;
    border: 2px solid black;
    border-radius: 5px;
    touch-action: manipulation;
    user-select: none;
}

h1{
    font-size: 40px;
    margin: 10px 0px;
}

h2{
    font-size: 30px;
}

p{
    font-size: 20px;
    margin: 20px 0px;
}

ul{
    margin: 10px 0px;
    
}

.ul-heading{
    font-size: 26px;
    font-weight: 800;
    margin: 10px 30px;
}

.ul-subheading{
    font-size: 20px;
    font-weight: 700;
    margin: 10px 40px;
}

.ul-para{
    font-size: 20px;
    font-weight: 400;
    margin: 10px 50px;
    align-items: start;
    
}

li{
    margin: 10px 0px;

    
}

.li-para{
    font-size: 20px;
    font-weight: 400;
    margin: 10px 40px;
}


.strong-margin{
    margin-left: 35px;

}

.li-supara01{
    font-size: 19px;
    font-weight: 400;
    margin: 10px 60px;
}

.li-subpara{
    font-size: 18px;
    font-weight: 400;
    margin: 0px 30px;
    text-align: start;
}


.font-sizep{
    font-size: 20px;
}

.footer{
    width: 100%;
    background-color: #FFCC00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-main{
    background-color: #FFCC00;
}


.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
}


.web-info{
    
    display: flex;
    align-items: center;
    justify-content: center;
    width:75vw;
}

.social-links{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 15vw;
    
}

.social-link{
    text-decoration: none;
    margin:5px;
    font-size: 20px;
}

footer{
    height: 10vh;
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 768px) {



}




@media (max-width: 600px) {

main{
    position: relative;
    height: auto;
}

.blog-container{
    
    height: auto;
}

.nav-links , .logo , .social-links{
    display: none;
}

.website-name{
    font-size: 30px;
    text-align: center;
    width: 90%;
}

i{
    font-size: 40px;
    width: 10%;
    margin: 10px;
}

h1{
    width: 100%;
    font-size:25px;
    text-align: center;
}



.section-container{
    flex-direction: column;
    
    height: auto;
}


.post-content{
    width: 100%;
}

.post-content-text{
    width: 93vw;
    margin-top: 20px;
    height: auto;
    overflow: hidden;
    padding: 5px;
    
}

.post-content-text-h2{
    font-size: 25px;
    margin: 5px;
    width:90vw;
    padding:5px;
}


.post-content-text-p{
    width:90vw;
}


.jaap{
    font-size: 35px;
    padding: 3px 25px;
    width: 95%;
    text-align: center;
}

.counter{
    width: 70vw;
    height: 40vh;
}

button{
    padding: 0px 10px;
    font-size: 30px;
}

.media-navbar-website-logo{
    display: block;
    margin-left: 10vw;
    height: 10vh;
}

.web-info{
    width: 100%;
    text-align: center;
}

.media-navbar-button{
    display: block;
}

.media-navbar{
    height: auto;
    width: 40vw;
    background-color: black;
    top: 0;
    left: 0;
    display: none;
    position: absolute;
    align-items: center;
    
}

.media-nav-links{
    
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.media-nav-link{
    list-style: none;
    font-size: 20px;
    width: 100%;
    text-align: center;
    transition: ease;
    height: 10vh;
}

.c{
    color: orange;
}

.media-nav-link:hover{
    font-weight: 700;
}

.li-para{
    width: 75vw;
    margin: 0px 35px;
}

p{
    width:94vw
}

.post-header{
    width: 94vw;
}

h2{
    width: 90vw;
    font-size: 25px;
}

.ul-heading{
    width: 74vw;
}

.strong-margin{
    width: 70vw;
}








.post-footer{
    height: auto;
}

}