#links-buttons{
    height: auto;
}

.links-buttons{
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.link-button{
    text-decoration: none;
    background-color: #eeeeee;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'Montserrat';
    color: darkturquoise;
    font-weight: 500;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 7px 3px darkturquoise;
}

.link-button:hover{
    color: rbga(0, 0, 0, 0);
    box-shadow: 0 0 7px 3px darkturquoise;
}

#links-logo-section{
    height: 150px;
}

.links-logo-section{
    height: 100%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 20px 0;
}

.links-logo-image{
    flex: 1 1 auto;
    align-self: center;
    height: 40px;
    max-width: 300px;
}

@media all and (min-width: 1100px) {
    
    #links-buttons{
        height: 80vh;
    }

    #links-logo-section{
        height: 20vh;
    }

    .links-logo-image{
        align-self: center;
        height: auto;
        max-width: 700px;
        padding-bottom: 8px;
    }
    

}