@font-face{
    font-family: headerfont;
    src: url(BackToSchoolPersonalUseRegular-w1xX2.ttf)
}
@font-face{
    font-family: headerfont1;
    src: url(SunnyspellsRegular-MV9ze.otf)
}
.header{
    border-radius: 5px;
    background-color:rgb(182, 200, 215);
    padding: 20px 10px;
    text-align: right;
    height: fit-content;
}
.header a{
    padding: 10px 10px;
    text-decoration:none;
    color: rgb(152, 108, 14);
    font-family:headerfont1;
    font-weight: lighter;
    font-size:x-large;
}
.header a:hover{
    text-decoration: underline;
    color: rgb(137, 83, 7);
    font-size:xx-large;
    font-weight: bold;
}
#education{
    color:maroon;
    font-family: headerfont;
    cursor: pointer;
    font-size: xx-large;
}
#education:hover{
    text-decoration: underline;
    font-size: xx-large;
    font-weight: 100;
}
body{
    background-color:aliceblue;
}
.content{
    border: 2px solid brown;
    background-image: url("tqRLiF.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 70%;
    height: 250%;
    position: absolute;
    left: 15%;
    top: 10%;
}
@font-face{
    font-family: myfont;
    src: url(EraserRegular.ttf)
}
.content p{
    color: brown;
    font-family: myfont;
    font-size:x-large;
    font-weight: 500;
}
table{
    border: 1px solid brown;
    width: 80%;
    height: 15%;
    position: absolute;
    left: 10%;
    top: 2%;
}
th{
    border: 1px solid brown;
    font-family: fantasy;
    color: brown;
}
td{
    border: 1px solid brown;
    font-family: fantasy;
    color: brown;
    text-align: center;
}
.insti{
    border: 2px solid brown;
    position: absolute;
    left: 0%;
    height: 18%;
    width: 100%;
}
.image1{
    border: 2px solid brown;
    opacity: 1;
    position: absolute;
    left: 5%;
    top: 10%;
    height: 80%;
    width: 40%;
    transition: .5s ease;
}
.image2{
    border: 2px solid brown;
    opacity: 1;
    position: absolute;
    left: 55%;
    top: 10%;
    height: 80%;
    width: 40%;
    transition: .5s ease;
}
.middle{
    opacity: 0;
    position: absolute;
    left: 20%;
    top: 50%;
    transition: .5s ease;
}
.insti:hover .image1{
    opacity: 0.1;;
}
.insti:hover .image2{
    opacity: 0.1;;
}
.insti:hover .middle{
    opacity: 1;
}
.middle p{
    text-align: center;
}
footer{
    text-align: center;
    position: absolute;
    right: 1%;
    top: 240%;
    background-color: cornflowerblue;
    font-size: larger;
    border: 1px solid goldenrod;
    border-radius: 5px;
}