html {
    background-color: #FFFFea;
}

article {
    font-size: 1.5rem;
    margin: 0.5em auto;
    width: 60%;
}

h1, h2 {
    color: rgb(0, 102, 204);
}

a {
    color: rgb(0, 102, 204);
}

not(.icon) a:hover {
    color: rgb(100, 135, 220);
}

.iconList {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-flow: row wrap;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0px 10px 0px 10px;
    font-size: .9em;
    max-width: 8em;
    padding: 0px 10px 5px 10px;
    border-radius: 5px;
    height: fit-content;
    text-decoration: none;

}

.icon:hover img {
    background: none;
    box-shadow: none;
}

.icon:hover {
    background-color: rgba(234, 192, 236, 0.5);
    cursor: pointer;
}

.icon img {
    width: 128px;
    height: 128px;
    margin-bottom: 5px;
    padding: 5px 0px 5px 0px;
}

.icon .file {
    box-shadow: inset 0 0 11px 17px #ffffea;
    background: #d6d4c5;
}

.playlist {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
}

.playlist iframe {
    max-width: 550px;
    margin: 5px 0 5px 0;
}


@media screen and (max-width: 768px) {
    article {
        font-size: 1rem;
        margin: 0.5em auto;
        width: 90%;
    }
    .icon {
        width: 7em;
        font-size: .8em;
        margin: 0;
    }
    .icon img {
        width: 64px;
        height: 64px;
    }
}

