body {
    background: url('/storage/assets/images/backgrounds/background_9.jpg.');
    background-size: cover;
    background-position: center;
}

main {
    height: 100vh;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 100px;
}

main > section.message {
    position: relative;
    background: rgb(11, 34, 64, 0.9);
    height: 50vh;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

main > section.message > * {
    color: #FFFFFF;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: 300;
    max-width: 90%;
}

main > section.message .title {
    font-size: 24px;
    text-decoration: underline dotted 2px;
    color: #C5022C;
    width: fit-content;
}

main > section.message a {
    text-decoration: underline dotted 1px;
}