.container-fluid{
    height: 50px;
    background-color: #8BAD9D;
    font-family: "Montserrat", sans-serif;
    /* text-align: center; */
}

.col-3{
    padding: 0px;
}

.col-3 button{
    height: 50px;
    width: 100%;
    font-weight: 400;
    font-size: 20px;

    background-color: transparent;
    color: #DFD7BB;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.col-3 button:hover{
    background-color: white;
    color: #1f1d1b;
}

footer{
    background-color: #8BAD9D;
    font-family: 'Montserrat', sans-serif;
    margin-top: 60px;
}

@media (max-width: 1200px) {
    .col-3 button{
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .col-3 button{
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .col-3 button{
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .col-3 button{
        font-size: 12px;
    }
}