/* Defaults */

html,
body {
    background-image: linear-gradient(to bottom, #FBFBFB 0%, #EFEFEF 100%);
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    user-select: none;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

img {
    pointer-events: none;
}

#press_image {
    width: 300px;
}

a {
    text-decoration: none;
}

p {
    font-size: 12px;
    line-height: 16px;
}

h2 {
    color: var(--primaryAccent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

h3 {
    font-size: 16px;
    line-height: 22px;
}

h4 {
    color: var(--primaryAccent);
    font-size: 12px;
    line-height: 16px;
}

.fill {
    width: 100%;
    flex-grow: 1;
}

button {
    background-color: var(--secondaryAccent);
    border-radius: 40px;
    border: none;
    outline: 0;
    appearance: none;
    text-transform: uppercase;
    padding: 10px 18px;
    color: var(--secondary);
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 200ms ease-in-out;
}

button.desktop {
    display: none;
}

button:hover {
    filter: brightness(150%)
}


/* Footer */

footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 10px;
}

footer small {
    color: var(--primaryAccent);
    font-size: 8px;
}

footer a {
    color: var(--tertiaryAccent);
    font-weight: 700;
}


/* Block */

.block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block:not(:first-child) {
    margin-top: 40px;
}

.block section {
    display: flex;
}

.block>header {
    padding-bottom: 20px;
}


/* Header */

#header {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 40px 0 0;
}

#header img {
    height: 20px;
}


/* Releases */

#releases {
    display: flex;
    flex-direction: column;
    width: 80%;
}

.release {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px 10px 10px;
    border-radius: 4px;
}

.release section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 0 0 10px;
}

.release-info {
    flex-grow: 1;
}

.release img {
    width: 50px;
    filter: grayscale(100%);
    transition: filter 200ms ease-in-out;
}

.release:hover img {
    filter: grayscale(0%);
}


/* Press Info */

#press_info {
    display: flex;
    width: 80%;
    flex-direction: column;
}

#press_info-text {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    padding-top: 20px;
}



#press_image {
    width: 100%;
}


/* Labels */

#labels {
    display: flex;
    flex-wrap: wrap;
    max-width: 45%;
    align-items: center;
}

#labels>article {
    margin: 0 10px;
    transition: filter 200ms ease-in-out;
}

#labels>article>a {
    display: block;
}

#labels>article:hover {
    filter: brightness(380%);
}

@media only screen and (min-width: 690px) {
    button.desktop {
        display: initial;
    }
    button.mobile {
        display: none;
    }
    #releases {
        flex-direction: row;
        width: auto;
    }
    #press_info {
        width: auto;
        flex-direction: row;
    }
    #press_info-text {
        padding-left: 20px;
        max-width: 400px;
        padding-top: 0;
    }
    #press_image {
        width: 300px;
    }
    #header {
        padding: 40px 0 0;
    }
    #header img {
        height: auto;
    }
    .release {
        width: 180px;
        flex-direction: column;
    }
    .release img {
        width: 100%;
    }
    .release section {
        align-items: center;
        margin: 16px 0 0 0;
        justify-content: flex-start;
    }
    .release:not(:first-child) {
        margin-left: 20px;
    }
    .block:not(:first-child) {
        margin-top: 60px;
    }
    footer small {
        font-size: 10px;
    }
}