body {
    margin: 0;
    background-color: rgb(0, 0, 0);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    text-align: center;
    font-size: 3em;
    margin: 0;
}

body {
    margin-top: 3%;
}

#title_container {
    display: flex;
    justify-content: center;
    gap: 20px;

}

h3 {
    text-align: center;
    font-size: 1em;
    color: rgb(140, 140, 140);
}

.a_button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px;
    margin: 5px;
    color: white;
    border: 5px white solid;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.5em;
    text-decoration: none;
    width: 100px; 
    height: 100px; 
}


.a_button:hover{
    background-color: #303030;
    transform: translateY(-3px);
}

.a_button:active {
    background-color: #9c9c9c;
}

img {
    width: 70px;
    height: 70px;
}

#team_buttons {
    display: flex;
    flex-direction: column;
}

.button_row {
    display: flex;
    justify-content: center;
}

#about {
    color: white;
    color: rgb(140, 140, 140);
}

#credits {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 1em;
    color: rgb(140, 140, 140);
}

#projections {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

#here_button {
    height: 45px;
    width: 130px;
    font-size: 20px;
    background-color: white;
    color: rgb(0, 0, 0);
}

@media (max-width: 966px) {
    h1 {
        font-size: 5vw;
    }

    h3 {
        font-size: 1.8vw;
    }

    .a_button {
        margin: 0.35vw; 
        font-size: 0.9vw; 
        width: 11vw; 
        height: 11vw; 
        border: 0.4vw solid white; 
        border-radius: 0.8vw;
    }

    img {
        width: 7.5vw; 
        height: 7.5vw; 
    }

    #credits {
        font-size: 2.3vw; 
    }
}




