body
{
    background: rgb(10,49,97);
    background: linear-gradient(180deg, rgba(10,49,97,1) 0%, rgba(2,29,61,1) 100vh);
    color: #3a3a3a;
    font-size: 0.8em;
    font-family: 'Roboto', sans-serif;
}

.page-header
{
    height: 8em;
    margin-bottom: 4em;
}

.page-header img
{
    height: 100%;
    max-width: 100%;
}

.main-content-wrapper
{
    margin: 0 15vw;
}

.page-footer
{
    height: 8em;
    margin-top: 4em;
}

.navbar
{
    color: #e7598b;
    font-size: 1.5em;
    float: right;
}

.navbar a
{
    color: #e7598b;
    text-decoration: none;
}

.navbar a:hover
{
    color: #c0577c;
}

/*
 *  ============== LANDING PAGE TEXT ==============
 */

div.landing-page-text-wrapper
{
    display: inline-block;
    margin: 0 auto 0 auto;
    color: white;
}

div.landing-page-large-text
{
    font-size: 6em;
    text-align: left;
}

div.landing-page-small-text
{
    margin: 1em 0;
    font-size: 2.5em;
    text-align: left;
}

div.landing-page-button-wrapper
{
    text-align: center; 
}

/*
 *  ============== SPOTIFY RESULTS ==============
 */

.artist-list
{
    background: rgba(255, 255, 255, 0);
}

.time-period-header
{
    font-size: 2em;
    margin-bottom: 0.5em;
}

.artist-list-item-wrapper
{
    width: 100%;
}

.artist-list-item
{
    background-color: white;
    border-top: 1px solid rgb(236, 236, 236);
    padding: 0.5em 0em;
    width: 100%;
    vertical-align: middle;
    animation: slide-in 1s;
    animation-fill-mode: forwards;
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.226) 8px 6px 5px;
}

.artist-list-item--highlight
{
    background-color: #ffffff;
}

.artist-list-item--first
{
    border: none;
}

.artist-list-item--last
{
    border-radius: 0 0 20px 20px;
}

.artist-list-item-wrapper:last-of-type
{
    border-radius: 0 0 5px 5px;
}

.artist-list-item-icon-container
{
    height: 4.4em;
    width: 4.4em;
    margin: auto 5% auto 2%;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.artist-list-item-icon
{
    object-fit: cover;
    height: 4.4em;
    width: 100%;
}

.artist-list-item-name
{
    vertical-align: middle;
    flex-grow: 1;
    font-size: 2em;
}

.artist-list-item-name a
{
    text-decoration: none;
    color: inherit;
}

.bandcamp-link
{
    font-size: 2em;
    height: 2em;
    vertical-align: middle;
    float: right;
    margin-right: 2em;
}

.bandcamp-link-image
{
    display: inline-block;
    position: relative;
    height: 2em;
    border-radius: 5000px;
    background-color: white;
    vertical-align: middle;
    margin-top: auto;
    margin-bottom: auto;
    transition: background-color 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.bandcamp-link-image:hover
{
    background-color: #c6dbdf;
    filter: brightness(110%);
    transition: background-color 0.3s ease, filter 0.3s ease;
}

.artist-list-load-wrapper
{
    background: white;
    border-radius: 0 0 20px 20px;
    text-align: center;
    font-size: 3em;
    padding-bottom: 0.25em;
    box-shadow: rgba(0, 0, 0, 0.226) 8px 6px 5px;
    animation: slide-in-top 0.75s;
}

.artist-list-load-icon
{
    left: 50%;
}

/*
 *  ============== BUTTONS ==============
 */

.btn
{
    background-color: rgba(0,0,0,0);
    color: white;
    border: none;
    border-radius: 500px;
    padding: 0.5em 1em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.4em;
    position: relative;
    left: 0;
    top: 0;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.btn:focus
{
    outline: none;
}

.btn:focus-visible
{
    outline: 1px solid rgb(255, 0, 255);
}

.btn--glow
{
    transition: filter 0.3s ease;
}

.btn--glow:hover
{
    filter: brightness(110%);
}

.btn--dim
{
    transition: filter 0.3s ease;
}

.btn--dim:hover
{
    filter: brightness(90%);
}

.btn--large
{
    font-size: 2.6em;
}

.btn--small
{
    font-size: 1em;
}

.btn--active
{
    background-color: #e7598b;
}

.btn--inactive
{
    background-color: #acacac;
}

.btn-text
{
    color: white;
    left: 0;
    top: 0;
    position: relative; 
    z-index: 3;
}

div.btn-background
{
    color: rgba(0, 0, 0, 0);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

.btn-background--active
{
    background-color: #e7598b;
    z-index: 2;
}

.btn-background--inactive
{
    background-color: #acacac;
    box-shadow: rgba(0, 0, 0, 0.178) 2px 3px 5px inset, rgba(0, 0, 0, 0.178) 2px 3px 5px inset;
    z-index: 0;
}

.time-period-buttons
{
    background: rgb(252, 238, 200);
    border-radius: 20px 20px 0 0;
    padding: 1.3em;
    box-shadow: rgba(0, 0, 0, 0.226) 8px 6px 5px;
    font-size: 1.25em;
    z-index: 0;
}

/*
 * ============== MODAL WINDOWS ==============
 */

.modal-container
{
    display: inline-block;
    position: fixed;
    left: 0; 
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    z-index: 5;
}

.modal-backdrop
{
    display: inline-block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.3);
    padding: 50;
    z-index: 1;
    left: 0;
    top: 0;
    vertical-align: middle;
}

.modal-window
{
    display: inline-block;
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    max-width: 50%;
    margin: auto auto;
    padding: 2.1em;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3em;
}

.modal-close-button
{
    height: 1.2em;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0.8em;
    cursor: pointer;
}

.modal-close-button:hover
{
    filter: brightness(90%);
}

.modal-close-button-icon
{
    height: 100%;
}

.modal-contents-wrapper
{
    height: auto;
}

.modal-text-contents
{
    font-size: 1.3em;
}

.modal-text-contents input
{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid rgb(202, 202, 202);
    border-radius: 4px;
    font-size: 1em;
}

.modal-text-contents input::placeholder
{
    font-style: italic;
    color: #d4d4d4;
}

.modal-window-button-container
{
    bottom: 0;
    left: 0;
    position: relative;
    display: block;
    text-align: center;
    padding: 2.1em;
    width: 100%;
    box-sizing: border-box;
}

.modal-window-button
{
    position: relative;
}

/*
 * ============== ABOUT PAGE ==============
 */

.text-box
{
    background: white;
    border-radius: 20px;
    font-size: 1.6em;
    padding: 1.5em;
    line-height: 1.5em;
}

.text-box h2
{
    display: inline;
}

.text-box a
{
    color: #e7598b;
}

/*
 * ============== ANIMATIONS ==============
 */

.animateToOrigin
{
    animation:toOrigin 0.5s;
    animation-fill-mode: forwards;
    transform-origin: 50% 50%;
}

@keyframes toOrigin{ 
    50%
    {
        transform: scale(1.15, 0.99);
    }
    100%
    {
        left: 0px; 
        top: 0px;
        width: 100%;
        height: 100%;
        transform: scale(1, 1);
    } 
}

@keyframes glow
{
    0%
    {
        filter: brightness(100%);
    } 
    100%
    {
        filter: brightness(120%);
    } 
}

@keyframes unglow
{
    100%
    {
        filter: brightness(100%);
    }
}

@keyframes slide-in
{
    0%
    {
        margin-left: -100px;
        opacity: 0;
    }
    100%
    {
        margin-left: initial;
        opacity: initial;
    }
}

@keyframes slide-in-top
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: initial;
    }
}

@media only screen
  and (max-device-width: 828px) {
    body 
    {
        font-size: 0.5em;
    }

    .page-header
    {
        height: 7.5em;
        margin-bottom: 4em;
    }

    .btn--large
    {
        font-size: 2.8em;
        margin-top: 3.5em;
    }

    .main-content-wrapper
    {
        margin: 0 5vw;
    }

    .time-period-buttons
    {
        font-size: 1em;
    }

    .time-period-buttons .btn
    {
        padding: 0.5em 0.75em;
    }

    .time-period-buttons
    {
        font-size: 1.35em;
    }

    .navbar
    {
        font-size: 2.25em;
    }

    .text-box
    {
        font-size: 2.2em;
    }

    .modal-window
    {
        max-width: 75%;
        font-size: 2em;
    }
}

@media only screen
  and (max-device-width: 321px) {

    .main-content-wrapper
    {
        font-size: 0.9em;
    }

    .time-period-buttons .btn
    {
        padding: 0.5em 0.75em;
    }

    .time-period-buttons
    {
        font-size: 1.2em;
    }
}

@media only screen
  and (min-device-width: 322px)
  and (max-device-width: 400px) {

    .time-period-buttons .btn
    {
        padding: 0.5em 0.75em;
    }

    .time-period-buttons
    {
        font-size: 1.2em;
    }
}

@media only screen
  and (min-device-width: 400px)
  and (max-device-width: 828px) {

    .time-period-buttons .btn
    {
        padding: 0.5em 0.75em;
    }

    .time-period-buttons
    {
        font-size: 1.35em;
    }
}

