body{
    font-family: "Poppins", sans-serif;
}
.text-primary-loayza{
    color: #0049AF;
}
.bg-primary-loayza{
    background-color: #0049AF;
}
.answer-box {
    gap: 10px;
}
.title-answer{
    padding: 5px 20px;
    padding-bottom: 10px;
    background-color: #0049AF;
    color: white;
    border-radius: 30px;
    font-size: 24px;
    text-decoration: none;
}
.description{
    font-size: 20px;
}
.btn-answer{
    background-color: #00c9fa;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
}
.img-icon{
    width: 50px;
}
.copy{
    text-align: right;
    font-size: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
@media (max-width: 768px) {
    .description{
        font-size: 16px;
    }
    .img-icon{
        width: 40px;
    }
    .title-answer{
        font-size: 20px;
    }
}
@media (max-width: 425px) {
    .description{
        font-size: 14px;
    }
    .title-answer{
        font-size: 18px;
    }
    .copy{
        font-size: 14px;
    }
    .answer-box {
        flex-direction: column;
        align-items: stretch;
    }
}