body{
    padding: 1rem;
}
#main-div {
    font-family: system-ui, '-apple-system', 'Segoe UI', 'Roboto', 'Ubuntu', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    width: 30%;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 0.5em;
    box-shadow: 0.05rem 0.125rem 0.5rem rgb(221, 221, 221);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    row-gap: 1rem;
}

.home-link{
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 0.3rem;
    text-decoration: none;
    background-color: #10a198;
    cursor: pointer;
}

.home-link:hover{
    opacity: 0.8;
}

.home-link:focus, .home-link:visited{
    color: white;
}