* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    max-height: 100vh;
    display: block;
}

.body {
    background-color: #991b1e;
    font-family: sans-serif;
    height: 100%;    
}

.message {
    /* border: 1px solid black; */
    width: 480px;
    height: 220px;
    margin: 0 auto;
    margin-top: calc(50vh - 110px); /*centrado vertical*/
    text-align: center;        
}

.message__title {
    margin-top: 30px;
    font-size: 16px;
    letter-spacing: 2px;
    color: #aeb8c2;
}

.message__text {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #fb9b22; 
    line-height: 16px;   
}