/*--------general styles*/
:root {
  --dark: #202b35;
  --mid: #8393ca;
  --light: #dbdacb;
  --white: #fff;
}

*
{
    font-family: "Century Gothic", Arial, Helvetica, sans-serif;
    color: var(--dark);
}

body
{
    background-image: url("../images/sleepSpaceBG.png");
    background-position: center;
    background-attachment: bottom;
    background-size: auto 100%;
    background-repeat: repeat-x;

}

.box
{
    background-color: var(--mid);
    border-radius: 20px;
    padding: 10px;
    margin: 7px 0px;
    box-shadow: 0px 5px 5px 0px var(--dark);
}

.row
{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.center-row
{
  align-items: center;
}

/*--------modal*/

.modal
{
    display: none;
    z-index: 3;
    height: fit-content;
    width: 400px;
    background-color: var(--light);
    position: fixed;
    top: 100px;
    left: 50%;
    margin-left: -200px;
    border-radius: 12px;
    box-shadow: 0px 10px 8px 0px var(--dark);
    padding: 10px;
}

.modal p
{
    text-align: center;
}

.modal button
{
    background-color: var(--dark);
    color: var(--light);
    margin: 10px 150px;
}

/*--------header styles*/

.moon-container
{
    margin: 0 auto;
    position: fixed;
    left: 50%;
    margin-left: -75px;
    z-index: 2;
}

.moon-phase
{
    background-image: url(../images/moon_full.png);
    background-position: center;
    background-attachment: center;
    background-size: contain;
    background-color: #dbdacb;
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

header
{
    height: 150px;
    padding: 30px;
}

header h1
{
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    color: var(--light);
    /*background-image: linear-gradient(180deg, var(--light) 20%, black 100%);
    background-clip: text;
    -webkit-background-clip: text;*/
}

header p
{
    color: var(--white);
    text-align: center;
    font-size: 16px;
    line-height: 18px;
}

/*--------main content styles*/
h2, h3, h4
{
    font-weight: 700;
}

h2
{
    font-size: 30px;
    text-align: center;
    text-shadow: 0px 3px 2px var(--dark);
    color: var(--white);
}

.h2-variant
{
    color: var(--dark);
    text-shadow: none;
}

h3
{
    font-size: 25px;
}

p
{
    font-size: 18px;
    margin: 0px 0px 5px 5px;
}

/*--------quiz styles*/

.last-box
{
    margin: 14px 0px;
}

.quiz-box
{
    background-color: var(--dark);
    box-shadow: none;
}

.quiz-box h2
{
    padding-bottom: 5px;
    border-bottom: 3px solid var(--white);
}

.quiz-box p
{
    color: var(--white);
}

.answer
{
    margin-top: 15px;
}

.answer:hover
{
    cursor: pointer;
}

.answer p
{
    text-align: center;
    font-size: 20px;
    margin: 0px;
}

.check
{
    height: 25px;
    width: 25px;
    background-color: var(--light);
    border-radius: 50%;
}

.click {
    background-color:#4f6980;
}


.routine-div
{
    flex: 1 0 100%;
}

/*--------music API styles*/

#youVid
{
    border-radius: 12px;
    border: 3px solid var(--dark);
    background-color: var(--dark);
}

.vid-text p
{
    text-align: center;
    font-size: 20px;
}


/*--------footer styles*/

footer
{
    margin-top: 120px;
    background-color: var(--dark);
}

footer p
{
    margin: 0px 0px 0px 5px;
    color: var(--white);
    font-size: 12px;
}

button
{
    background-color: #dbdacb;
    border-radius: 12px;
    height: auto;
}

button p
{
    color: var(--dark);
    font-size: 14px;
    text-transform: none;
}



@media screen and (min-width: 870px)
{
    .moon-container
    {
        top: 1%;
    }
    .column, .columns
    {
        margin-left: 4%;
    }
}

@media screen and (max-width: 870px)
{
    header
    {
        height: 75px;
        padding: 150px 0px 0px 0px;
    }
    header h1
    {
        font-size: 30px;
        margin-bottom: 0px;
    }
    header p
    {
        margin-bottom: 0px;
    }
    .row
    {
        flex-wrap: wrap;
    }
    .row-one
    {
        flex: 1 0 100%;

    }
    .divider
    {
        flex: 1 0 100%;
    }
    #youVid
    {
        flex: 1 0 100%;
        margin-bottom: 5px;
    }
    .vid-text
    {
        flex: 1 0 100%;
    }
}

a {
    color:white;
    text-decoration: none;
}