html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: white;
}

html {
    display: flex;
    flex-direction: row;
}

.nav-div {
    display: flex;
    flex-direction: column;
    background-color: #A41D21;
    position: fixed;
    width: 252px;
    height: 100vh;
    left: 0;
    top: 0;
}

.nav-div a, tools-div a{
    font-family: "Inter", sans-serif;
    color: white;
    text-decoration: none;
}

.logo-div {
    padding: 20px 0 0 20px;
}

#myIITLogo {
    font-weight: bold;
    font-size: 28px;
}

.tools-div a {
    padding: 28px;
    display: flex;
    align-items: center;
    font-size: 20px;
    transition: font-size 0.5s;
}

.tools-div a:hover {
    background-color: #86171b;
    font-size: 21px;
}
.herosection-div img{
    width: 100vh;
}
.content-div {
    display: flex;
    flex-direction: column;
    margin-left: 252px;
    width: 100%;
    height: 100%;
    background-color: white;
}
.content-div .header{
    color: black;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 20px;
}
.navtop-div{
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(10px);
}
.navtop-div a {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    color: black;
    font-size: 20px;
}
.navtop-div a:hover{
    text-decoration: underline;
}
.navtop-div #profilePic{
    width: 40px;
    border-radius: 100%;
    background-color: #86171b;
    margin-left: 8px;
}
.navtop-div #toolsIcon{
    width: 40px;
    margin-left: 8px;
}
.annoucements-div, .survey-div {
    height: 400px;
    width: 100%;
}

.annoucements-div .box-div, .survey-div .box-div{
    display: flex;
    width: 100vh;
    flex-direction: row;
}
.annoucements-div .box-div a, .survey-div .box-div a{
    text-decoration: none;
}
.annoucements-div .box, .survey-div .box{
display: flex;
flex-direction: column;
margin: 0;
width: 400px;
height: 240px;
background: #333333;
border-radius: 20px;
margin: 20px;
flex-shrink: 0;
text-decoration: none;
}
.annoucements-div .box-div .box .heading, .subheading, .content{
    color: white;
    font-family: "Inter", sans-serif;
    padding: 20px 20px 0 20px;
    overflow: hidden;
    margin: 0;
}
.annoucements-div .box-div .box .subheading, .content{
    font-size: 12px;
}
.annoucements-div .box-div .box .content{
    color: #B5B5B5;
}


