*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: white;
}
.gracias{
    background-color: #01578c;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sub-gracias{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title{
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 10px;
}
.text{
    font-size: 19px;
    margin-bottom: 15px;
    text-align: center;
}
a{
    background-color: white;
    padding: 8px 30px;
    text-decoration: none;
    color: #01578c;
    border-radius: 5px;
    font-size: 17px;
    transition: all 0.3s ease;
}
a:hover{
    opacity: 0.9;
    box-shadow: 0 0.25rem 0.94rem rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 700px){
    .sub-gracias{
        width: 85%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .title{
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .text{
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }
}
