.home {
    min-height: calc(100vh - 91px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home .slogan {
    padding: 10px;
    font-size: 2em;
    text-align: center;
}

.home .buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.home .button {
    margin: 12px;
    padding: 16px 24px;
    border-radius: 8px;
}

.home .blue {
    background-color: rgba(50, 100, 200, 0.75);
}

.home .blue:hover {
    background-color: rgb(50, 100, 200);
}

.home .green {
    background-color: rgba(50, 200, 100, 0.75);
}

.home .green:hover {
    background-color: rgb(50, 200, 100);
}