body {
    text-align: center;
    background-color: lightblue;
} h1 {
    font-size: 3rem;
} #tabBar {
    background-color: gray;
    width: 70vw;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
} button, select {
    font-size: 1.7rem;
    width: 30%;
    text-align: center;
} #links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    row-gap: 20px;
    width: 75vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} a {
    font-size: 2rem;
}