@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{
    height: 80vh;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    
    
}

.content{
    display: flex;
}

.content-container{

    width: 70vw;
    height: 80vh;
    margin-left: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

h1{
    font-size: 40px;
    
    
}

.blogpics{
    height:47vh;
    margin: 5px;
    border-radius: 5px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    aspect-ratio: 1/1;
}

.links-container{
    margin-top: 20px;
    width: 28vw;
    height: 80vh;
    border: 2px solid rgb(243, 240, 240);
    padding: 10px;
    border-radius: 5px;


}

.links-container-H2{
    font-size: 27px;
    text-align: center;
}

.links-container-h2{
    text-align: center;
    font-size: 25px;
    background-color: #FFCC00;
    border-radius: 5px;
    margin-top: 20px;
}




h2{
    font-size: 30px;
}

h3{
    font-size: 25px;
}

p{
    font-size: 20px;
    margin: 20px 0px;
}


.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%;
    
}


footer{
    height: 10vh;
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 768px) {



}




@media (max-width: 600px) {





.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;
}



main{
    position: relative;
    
}

.blogpics{
    height: 60vh;
    width:92vw;
    border-radius: 5px;
}

.content{
    flex-direction: column;
    height: 80vh;
    width: 100%;
}

.content-container{
    width: 100%;
    height: auto;
}

.links-container{
    width: 100%;
    height: auto;
}



h1{
    width: 100%;
    text-align: start;
    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: fixed;
    align-items: center;
    margin-top: 10vh;
    
}

.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;
}

.links-container-H2{
    font-size: 25px;
}


.post-footer{
    height: auto;
}

}