@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Kannada:wght@400;500;600&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    background: url('../css/images/culture.jpg');
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url("https://images.pexels.com/photos/548391/pexels-photo-548391.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    width: 100%;
    background-size: cover;
    color: #fff;
}
section{
    align-items: center;
    justify-content: center;
}
#s1{
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px auto;
}
#s1 img{
    width: 40%;
    padding: 20px;
    box-shadow: 0 0 15px 5px #000000;
}
#s1 img:hover{
    box-shadow: 0 0 15px 5px gold;
    transition: 0.5s;
}
h1{
    font-size: 50px;
    font-family: sans-serif;
    text-align: center;
    margin-top: 2%;
}
section .content p{
    margin:0 auto;
    width: 80%;
    text-align: center;
    font-size: 18px;
    line-height: 2em;
    font-family: 'Noto Serif Kannada', serif;
}
section .content h2{
    font-size: 40px;
    text-align: center;
    padding: 20px;
}

#s2,#s3{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
}
#s2 img{
    float: left;
    margin-top: 2%;
    width: 40%;
    padding: 20px;
    box-shadow: 0 0 15px 5px #000000;
}
#s2 img:hover{
    box-shadow: 0 0 15px 5px gold;
    transition: 0.5s;
}
#s3 img{
    float: left;
    margin-top: 2%;
    width: 40%;
    padding: 20px;
    box-shadow: 0 0 15px 5px #000000;
}

#s4 img{
    width: 80%;
}
@media (max-width:700px) {
    section .content p{
        font-size: 23px;
        text-align: justify;
    }
    #s1 img{
        width: 90%;
    }
    #s2 img{
        width: 100%;
    }
    #s3 img{
        width: 100%;
    }
}