* {
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    padding: 5pt;
    text-align: center;
    font-size: 15pt;
}

section {
    display: -webkit-flex;
    display: flex;
}

.img {
    list-style-type: none;
    padding: 0;
    width: 60%;
    max-width: 800px;
    padding-bottom: 10px;
}

.text {
    -webkit-flex: 3;
    -ms-flex: 3;
    flex: 3;
    padding: 10px;
}

footer {
    padding: 10px;
    text-align: right;
    color: white;
    display: inline-block;
    margin-right: 5pt;
    width: 100%;
    padding-bottom: 20px;
}

@media (max-width: 900px) {
    section {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .img {
        width: 100%;
    }
}

#player {
    width: 100%;
}

.button {
    color: #000;
    background-color: #fff;
    border-radius: 4pt;
    border: 10pt;
    padding: 10pt;
}