body {
    margin: 0;
    padding: 0;
    height: 100vh;

    font-family: Roboto, sans-serif;

    background-image: url('../images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.message-wrapper {
    display        : flex;
    align-items    : center;
    justify-content: center;
    width          : 100vw;
    height         : 100vh;
}

.message {
    font-size  : 24px;
    text-align : center;
    color      : rgb(96, 96, 96);
    font-weight: 300;

    animation: fade-in 3s;
}

img {
    max-width: 480px;
}

/*Animations*/
@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
