.button_container {
    position: relative;
    display: inline-block;
}

.learn_more_button {
    font-family: 'Conv_AvenirLTStd-Black';
    position: absolute;
    right: 24px;
    bottom: 20px;
    color: black!important;
    text-decoration: none;
    padding: 0.9% 1%;
    background-color: #f1c100;
    border-radius: 6px;
    font-size: 100%;
    font-weight: 100;
    transition: all 0.3s ease;

}


.learn_more_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.learn_more_button:visited {
    color: #4c4f55;
}

@media screen and (max-width:930px) {
    .learn_more_button {
        font-size: 80%;
        right: 7px;
        bottom: 7px;
    }
}

@media screen and (max-width:480px) {
    .learn_more_button {
        font-size: 60%;
    }
}

@media screen and (max-width:350px) {
    .learn_more_button {
        font-size: 45%;
    }
}