body, html {
    height: 100%;
}

@font-face {
    font-family: 'Seaside Resort';
    src: url("seaside_resort.woff");
    font-size: normal;
    font-weight: normal;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

body h1 {
    font-family: 'Seaside Resort';
}

.container {
    display: flex;
    height: 85%;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row-reverse;
}

@media (orientation: landscape) and (max-height: 400px) {
    .container {
        height: 100%;
        align-items: center;
    }
}

@media (orientation: portrait) and (max-width: 400px) {
    .container {
        height: 95%;
    }
}

.text-block {
    background-color: white;
    border-radius: 8px;
    padding: 16px 15%;
    text-align: center;
}

.text-block > h1 {
    color: rgb(71, 126, 180);
}

.text-block > p {
    color: rgb(146, 146, 146);
    font-size: x-large;
}
