footer {
    position: relative;
    background-color: #2d2e33;
    box-sizing: border-box;
    
    padding: 5vw 3vw;
    margin-top: 9.11vh;
    height: 40vh;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(5px);
    z-index: -1;
    background-attachment: fixed;
}
.footer_container {
    position: relative;
    max-width: 100vw; 
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
}
.footer_title{
    width: 100%;
    margin-bottom: 4vh;
}
.footer_title h1{
    font-size: calc(3.2 * (1vw + 1vh)/2);
    color: white;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
}
.footer_title a{
    text-decoration: none;
    color: #ffffff;
}
.footer_row{
    display: flex;
    width: 100%;
    justify-content: space-between;
    
    margin-right: auto;
    margin-left: auto;
}
.footer_team, .footer_contact, .footer_year, .footer_highschool {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: flex-start; 
    margin-left: 4vw;
}
.footer_text {
    display: flex;
    align-items: center;
    gap: 0.7vw;
}
.footer_text svg{
    width: 2vw;
    height: auto;
}
.footer_row h3, .footer_row p {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}
.footer_row h3 {
    position: relative;
    margin-bottom: 4vh;
    font-weight: 700;
    font-size: calc(2.5 * (1vw + 1vh)/2);
    color: #d7e0e7;
    text-shadow: 2px 2px 3px rgba(12, 12, 51, 0.3), 2px 2px 3px rgba(16, 17, 77, 0.3);
}
.footer_row p{
    color: #bdb6b6;
    font-size: calc(1.8 * (1vw + 1vh)/2);
}
.footer_row h3::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -0.4vh;
    left: 0;
    width: 3vw;
    height: 0.3vh;
    background-color: #ffffff;
}
.footer_contact a, .footer_highschool a{
    text-decoration: none;
    color:#bdb6b6;
    padding: 5px;
    border-radius: 7px;
}
.footer_contact a:hover, .footer_highschool a:hover{
    background-color: #696c77a8;
}