body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.banner {
    background-color: #1aade7;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 100px;
    font-family:Georgia;
    padding-bottom: 10px;
    padding-top: 20px;
}
.underbanner{
    font-size: 2rem;
    margin: 0px;
    padding-top: 0px;
    font-family:  'Times New Roman';
}
.navbar {
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-size: 1.2rem;
    position: relative;
}
.navbar a:hover {
    background-color: #575757;
    border-radius: 5px;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #575757;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.content {
    text-align: center;
    padding: 50px;
    font-size: 2rem;
}

.hd1{
    color: rgb(79, 65, 207);
    font-size:35px;
    text-align: center;
    word-wrap: break-word;
    margin-bottom:10px;

}
.hd2{
    color:black;
    font-size: 25px;
    text-align: center;
    word-wrap: break-word;
    margin-bottom:10px;

}
.t1{
    color: black;
    font-size: 20px;
    text-align: left;
    margin-left: 40px;
    word-wrap: break-word;



}

.hdd{
   color: rgb(5, 0, 47); 




}
.footer{
    background-color: navy;
    color:white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width:100%;
}

.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    left: -250px;
    top: 0;
    background-color: #111;
    padding-top: 60px;
    transition: left 0.3s;
    z-index: 9999;
}

.sidebar a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    display: block;
}

.sidebar a:hover {
    background-color: #575757;
}

.sidebar .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}
.menu-btn {
    position: absolute;
    left: 10px;
    top: 10%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgb(3, 3, 3);
    font-size: 1.8rem;
    cursor: pointer;
}
.sub-menu {
    display: none;
    padding-left: 20px;
}

.sidebar a.active + .sub-menu {
    display: block;
}



.sidebar a.subheading {
    font-size: 0.8rem;  
    padding-left: 30px; 
    padding-top: 2px;
    padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
    .navbar {
        display: none;
    }
}


.smalltext{
    font-size: 15px;
    margin-bottom: 0%;
}

.link{
    color: red;

}