@charset "utf-8";

.container {
    min-height: 100vh;
    background-color: #69a5e9;
    background-image: url(../images/home-background.webp);
    background-size: cover;
    background-position:  center center;
    background-blend-mode: multiply;
    color: white;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}
.container p,
.container h1 {
    margin: 30px auto;
}

.container p span{
    display: inline-block;
}

h1 {
    font-size: 4rem;
}

small {
    position: absolute;
    padding: 30px 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}


@media screen and (min-width: 650px) {
    .container {
        padding: 100px 30px;
    }
    .container p,
    .container h1 {
        margin: 50px auto;
    }
    .container div {
        margin: 10px auto;
    }
    .container .button {
        margin-bottom: 20px;
    }
    h1 {
        font-size: 6rem;
    }
}