.home {
    width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: justify;
    color: var(--cor-vinho-escuro);
    margin-top: 10rem;
    margin-bottom: 5rem;
    gap: 2rem;

    h1 {
        text-align: center;
    }

    a {
        width: 200px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--cor-vinho-claro);
        text-decoration: none;
        border-radius: 5px;
    }
}


@media screen and (max-width: 990px) {
    .home {
        width: 100%;
        padding: 0rem 2rem;
        margin-bottom: 2rem;

        a {
            width: 124px;
            height: 28px;
        }
    }

}
