* {
    margin: 0;
    padding: 0;

    font-family: "Arial Rounded MT Bold", sans-serif;
    font-weight: bold;
}

html, body {
    background-color: #ebebeb;

    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;

    height: 100%;
}

p {
    margin-bottom: 1.6rem;
}

#poster {
    background: url('../assets/images/poster.jpg') no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 80vh;
}

#content {
    width: 100%;
    text-align: center;
    padding-bottom: 3rem;
}

img {
    margin-top: 2.4rem;
    width: 90%;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 22px;
}

.highlight {
    color: orange;
    font-size: 20px;
}

.button {
    background-color: #f4d419;
    color: black;
    text-decoration: none;
    padding: 1rem;
}

.button:hover {
    background-color: #dbbb00;
}

@media only screen and (min-width: 760px) {
    img {
        width: 50%;
    }
}

@media only screen and (min-width: 1240px) {
    img {
        width: 65%;
    }

    #poster {
        background-position: left;
        position: absolute;
        left: 0;
        height: 100%;
    }

    #content {
        width: 50%;
        position: absolute;
        right: 0;
        height: 100%;
        padding-bottom: 0;
    }
}


@media only screen and (min-width: 1440px) {

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 30px;
    }

    .highlight {
        font-size: 24px;
    }

    #poster {
        background-position: left;
        position: absolute;
        left: 0;
        height: 100%;
    }

    #content {
        width: 65%;
        position: absolute;
        right: 0;
        height: 100%;
        padding-bottom: 0;
    }

    img {
        width: 60%;
        margin-top: 6rem;
    }
}