#container {
    min-height: 80vh !important;
}

.title h1 {
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.title h2 {
    color: #397019;
}

.title {
    text-align: center;
    margin-bottom: 80px;
}

.button-grid img {
    width: 120px;
}

.button-grid {
    display: grid;
    justify-items: center;
    justify-content: center;
    grid-template-columns: 120px 120px;
    grid-row-gap: 15px;
    grid-column-gap: 15px;
}

.button-grid a:hover, .button-grid a:focus {
    opacity: 0.8;
}

.button-grid a:focus:not(:focus-visible) {
    opacity: 1;
}

@media only screen and (min-width: 375px) {

    .button-grid {
        grid-template-columns: 150px 150px;
        grid-row-gap: 20px;
        grid-column-gap: 20px;
    }

    .button-grid img {
        width: 150px;
    }
}

@media only screen and (min-width: 425px) {

    .button-grid {
        grid-template-columns: 165px 165px;
        grid-row-gap: 20px;
        grid-column-gap: 20px;
    }

    .button-grid img {
        width: 165px;
    }
}

@media only screen and (min-width: 600px) {

    .button-grid {
        grid-template-columns: 180px 180px;
        grid-row-gap: 30px;
        grid-column-gap: 30px;
    }

    .button-grid img {
        width: 180px;
    }
}

@media only screen and (min-width: 970px) {

    .button-grid {
        display: flex;
        grid-column-gap: 40px;
    }

    .button-grid img {
        width: 200px;
    }

    .title{
        margin-bottom: 125px;
    }

    #container{
        min-height: 90vh!important;
    }
}