.home-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.button {
    padding: 8px 20px;
    background-color: #004282;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0px 10px 20px rgb(96, 84, 162);
    border-color: #0d6efd;
    text-align: center;
}
.button:hover {
    background-color: #0061c1;
}
.home-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.home-logout-btn {
    background-color: #ed2424;
    box-shadow: 0px 10px 20px rgb(201, 91, 91);
}

@media screen and (max-width: 576px) {
    .home-links {
        flex-direction: column;
        padding: 0 40px;
    }
}