/**
 * (C) Copyright 2021 - ToasterCat Studios LLC
 */

/** 
 * Desktop / Horizontal
 */
@media all and (min-width: 800px) {
    /**
     * HEADER / FOOTER
     */
    .header {
        height: 7rem;
    }
    .header-short-name {
        display: none;
    }
    .footer {
        height: 5rem;
    }

    /**
     * COMMON SECTIONS
     */
    .section {
        width: 800px;
    }

    .section-hero {
        width: 800px;
    }

    .section-album {
        width: 800px;

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: top;
    };
    .album-info {
        margin-left: 2rem;
    }

    .section-show {
        margin: 2rem;
    }
    .show-thumbnail {
        width: 200px;
    }
    .show-thumbnail img {
        width: 200px;
        height: 150px;
    }

    /**
     * COMMON COMPONENTS
     */
    .form-group {
        flex-direction: row;
    }

    .button {
        margin: 10px 10px;
        padding: 10px 20px;
    }
    .primary-button {
        margin: 10px 10px;
        padding: 10px 20px;
    }
}