/* make a flexbox that spans the entire screen to palce
 the items inside of it in the middle */
.wrapper {
    min-width: 100vw;
    min-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    gap: 4px;
}


a {
    color: white;
    padding: 10px;
    background-color: var(--accent1-dark);
    font-family: sans-serif;
    border-radius: 10px;
}

a:hover {
    text-decoration: unset;
    background-color: var(--accent1);
}