@font-face {
    font-family: Nunito;
    src: url(Nunito-Regular.ttf);
  }

body {
    font-size: 16px;
    font-family: Nunito, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 96vh;
    padding: 0 4vw;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.35rem;
}

a {
    width: fit-content;
    background: #0BACAC;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all ease 200ms;
}

a:hover {
    background: #0C9494;
}

p {
    text-align: center;
    margin: 5rem 0 2rem;
}