.header{
    height: 400px;
    width: 100%;
    position: relative;
}

.header img.cover{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    filter: brightness(0.6);
}
.headerdetails{
    top: 0px;
    height: 50px;
    width: 100%;
    z-index: 1;
    position: absolute;
    background-color: white;
    display: flex;
    justify-content: flex-end;
}
.header .headerdetails .logo{
    background-color: transparent;
    position: absolute;
    left: 0px;
    height:100%;
    display: flex;
    align-items:center;
    justify-content: center;

}
.header .headerdetails .logo img{
    height: 100%;
    width:50px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
}
.header .headerdetails .logo .logoname{
    color: black;
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
    position: relative;
}
.header .headerdetails button{
    padding: 12px 20px;
    font-weight: bold;
    color:white;
    position: relative;
    border: none;
    outline: none;
    margin: 5px;
    border-radius: 10px;
    background-color: black;
}
.header .collegname{
    position: absolute;
    z-index: 1;
    top: 35%;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 1000;
    font-size: 56px;
    text-transform: uppercase;
}
.header .collegslogan{
    position: absolute;
    z-index: 1;
    top: 55%;
    width: 100%;
    text-align: center;
    color:yellow;
    font-weight: 1000;
    font-size: 36px;
    text-transform: uppercase;
}
.header button.staff{
    padding: 12px 20px;
    font-weight: bold;
    color:white;
    position: absolute;
    border: none;
    outline: none;
    right: 2px;
    top: 48px;
    margin: 5px;
    border-radius: 10px;
    background-color: black;
}

@media only screen and (max-width : 680px) {
    .header .headerdetails .logo .logoname{
        display: none;
    }
    .header .collegname{
        font-size: 34px;
    }
    .header .collegslogan{
        font-size: 28px;
        top: 60%;
    }
}
@media only screen and (orientation : landscape) {
    .header .collegname{
        font-size: 34px;
    }
    .header .collegslogan{
        font-size: 28px;
        top: 60%;
    }
}