body {
    margin: 0;
    background-color: black;
    font-family: 'Cantarell', serif;
}

.logo {
    text-align: center;
}

.logo img {
    max-width: 250px;
}

.bar {
    background-color: #1a390c; 
    width: 100%; 
    display: inline-block; 
    position: relative;
}

.bar img {
    height: 200px; 
    position: absolute; 
    left: 0;
}

.bar .title {
    color: white;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    line-height: 200px;
}

.intro {
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 24px;
}

.play {
    text-align: center;
}

.play img {
    max-width: 200px;
}

.images {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    padding: 15px;
}

.images img {
    max-width: 300px;
    padding: 15px;
}

.lists > div {
    width: 50%;
    float: left;
    color: white;
    margin: 15px 0;
}

.lists ul {
    max-width: 300px;
    margin: auto;
    list-style: none;
    padding: 0 10px;
}

.lists li {
    padding-bottom: 10px;
}

.lists li:before {
    content: '✓';
}

@media (max-width: 960px) {
    .bar .title {
        font-size: 36px;
        line-height: normal;
    }

    .bar img {
        position: relative;
        height: 150px;
    }

    .intro {
        font-size: 14px;
        padding: 10px;
    }

    .images {
        grid-template-columns: auto;
    }

    .images img {
        max-width: 200px;
    }
}