*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;                             
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: rgb(226, 156, 156);
    position: relative;
    
}
.disaable-scroll{
    overflow: hidden;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3px;
    background-color: rgb(145, 54, 54);
    /* outline added to cover the little gap there is b/n the header and the main-img-container */
    outline: 1px solid  rgb(145, 54, 54);
    
}

section ,main{
    background-color: rgb(232, 227, 218);
}


/* Navigation */
nav{

    margin: 1rem;

}

li{
    list-style: none;
}
a{
    text-decoration: none;
}
.nav-links {
    display: none;  
    position: absolute;
    left: 0;
    background-color:rgba(145, 54, 54 , 0.8);
    height: 10rem;
    z-index: 1;
    flex-direction: column;
    justify-content:flex-start;
    align-items: center;
    height: 100vh;
    width: 50vw;
    transition: all 0.5s ease-in-out;
}
.nav-links li{
    margin: 0.6rem 0;
}
.nav-links a{
    margin: 10rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    border-bottom: 2px solid white;

}
.nav-links li:hover{
    transform: scale(1.3);
    transition: all 0.5s ease-in-out;
}
.active{
    display: flex;
}
.logo{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: rgb(34, 17, 17);
}
.hamburger{
    position: absolute;
    cursor: pointer;
    font-size: 2rem;
}
/* Main */

main{
    padding: 1rem 1rem 2.2rem 1rem;
}
.main-img-container{
    width: 100%;
    overflow: hidden;
}
.main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sectionpar{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 1.6rem;
    text-align: center;
    margin: 0 1rem 1rem 1rem;
    color: rgb(17, 142, 174);
    text-decoration: underline;
}
.whowearetext{
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 2.2rem;
    color: #883d88;
    text-decoration: none;

    
}
.sectiontext{
    font-family: "Playwrite NZ", cursive;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color: #78530e;
    margin: 1rem;
    font-size: 1.3rem;
}
.ourprogramstext{
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 2.2rem;
    text-align: center;
    margin: 1rem;
    color: rgb(182, 48, 90);
}
.meettheboard{
    padding: 0 0 3rem 0;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 2.2rem;
    text-align: center;
    color: rgb(111, 45, 66);
    font-weight: bold;
    text-decoration: underline;
}
.individual{
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.individual img {
    width: 10rem;
    border-radius: 50%;
    object-fit: cover;
}
/* board */
.theboard{
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));;
    grid-column-gap: 1rem;
    grid-row-gap: 1.5rem;
}

.board-name{
    font-family: "Playwrite NZ", cursive;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color:#3a1c3a;
    font-size: 1.2rem;
}
.universty-name {
    font-family: "Playwrite NZ", cursive;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color:#78530e;
    font-size: 1rem;
}
.position{
    font-family: "Playwrite NZ", cursive;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color:#1a45b0;
    font-size: 1rem;
}
/* footer */
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    text-align: center;
    gap: 1rem;
    background-color: rgb(226, 156, 156);
}
.contact{
    font-family: "Playwrite NZ", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}
.email{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 1.2rem;
}
.copyright{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1rem;
}
.social-icons{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
