
/* .banner {
    position: flex;
    background-color: white;
    box-shadow: 3px 10px 10px rgb(63, 63, 63);
    text-align: center;
    padding: 0px 0px 5px 0px;
    justify-content: space-between;
}

.banner img{
    width: 60px;
    height: 60px;
    float: left;
}

.banner h2{
    font-size: 2em;
}

.banner a{
    color: black;
    text-decoration: none;
    font-size: 1.2em;
    gap: 16px;
}

.banner a:hover{
    transition:all 0.3s ease-in-out;
    text-decoration: underline;
    color: blue;
} */

.testnav{
    position: sticky;
    top: 5px;
    background-color: white;
    box-shadow: 3px 10px 10px rgb(63, 63, 63);
    text-align: center;
    padding: 5px 5px 5px 5px;
    gap: 5px;
}

.testnav img{
    float: left;
    width: 80px;
    height: 80px;
}

.testnav h2{
    font-size: 2em;
}

.testnav .nav_a{
    color: black;
    text-decoration: none;
    font-size: 1.2em;
    margin-left: 24px;
    margin-top: auto;
}

.testnav a:hover{
    transition:all 0.3s ease-in-out;
    text-decoration: underline;
    color: blue;
} 

.Main {
    background-color: white;
    box-shadow: 0px 5px 10px 0px;
    text-align: center;
    position: static;
}