.button-container {
    text-align: center;
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.button {
    padding: 20px;
    background: #0d2954;
    color: white;
    text-decoration: none;
}

.button:hover {
    background: white;
    color: #0d2954;
    border: #0d2954 1px solid;
}

@media screen and (min-width:1024px) {
    .button-container.left {
        justify-content: left;
        display: flex;
        padding: 0;
        margin-top: 60px;
    }

    .button-container.right {
        justify-content: right;
        display: flex;
        padding: 0;
        margin-top: 75px;
    }

}

@media screen and (min-width:1600px) {
    .button-container.left {
        margin-top: 178px;
    }

    .button-container.right {
        margin-top: 194px;
    }
}