body {
    background-color: rgb(99, 99, 99);
}

main {
    height:100vh;
    width: 100vw;
    padding: 20px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.about-section, .team-link{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: rgb(99, 99, 99);
}

a {
    text-decoration: none;
    color: inherit;
}

.team-link {
    height:80px;
    width: 300px;
    font-size: 28px;
    color: rgb(223, 233, 255);
    background-color: #005289;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.team-link:hover {
    background-color: #00c0ff;
}