.container {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding-top: 30vh;
}

.btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

a {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    background-color: cyan;
    font-size: large;
}

a:hover {
    background-color: blue;
    color: white;
}