body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('https://s3.eu-west-3.amazonaws.com/siestapeople.com/Manu+Jaime-20-d+crop.jpg');
    background-size: cover;
    background-position: center;
    color: #FFFCF2;
    font-family: 'Red Hat Display', sans-serif;
}

.landing-page {
    text-align: center;
}

h1 {
    font-size: 5em;
    font-weight: 700;
}

/* Add the following styles for mobile devices */
@media only screen and (max-width: 767px) {
    body {
        background-image: url(https://s3.eu-west-3.amazonaws.com/siestapeople.com/Manu+Jaime-20-d+crop.jpg), url(https://s3.eu-west-3.amazonaws.com/siestapeople.com/Manu+Jaime-20-d+crop.jpg);
        background-position: center, left;
        background-size: 90%, cover;
        background-repeat: no-repeat;
        background-attachment: scroll, fixed;
    }

    h1 {
        Font-size: 3em;
    }
}