body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.App__wrap {
    width: 100%;
    min-width: 300px;
    margin: 0 auto;
    color: #000;
    font-size: 1rem;
}

.App__header {
    padding: 0.8rem 1.4rem;
    border-bottom: 1px solid gainsboro;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
}

.App__header a {
    color: inherit;
    text-decoration: none;
}

.App__logo img {
    margin-right: .25em;
    vertical-align: sub;
}

.App__menu a {
    margin-left: 1em;
}

.App__loading {
    width: 200px;
    text-align: center;
    margin: 20% auto 0;
}

.App__content{
    text-align: center;
    padding: 60px 10% 0 11%;
}

.App__content h4 {
    margin-bottom: 0;
    font-weight: 300;
}

.App__content h2 {
    margin-top: 0.7rem;
    font-size: 2.4rem;
    margin-bottom: 0;
    padding-bottom: 1rem;
    border-bottom: 1px #ededed dashed;
    font-weight: 300;
}

.App__content p {
    text-align: left;
    font-size: medium;
    line-height: 28px;
    margin-top: 0;
    padding-top: 1.1rem;
    font-weight: 300;
}

.DayLists {
    list-style: none;
    padding-left: 0;
}
.DayLists li {
    padding-bottom: 16px;
    padding-top: 16px;
    border-bottom: 1px solid lightgray;
    padding-left: 7%;
    font-weight: 300;
}

.DayLists li:first-child {
    padding-top: 0;
}
.DayLists li a {
    text-decoration: none;
    color: #000;
}

/*I haven't review*/
.splash {
    text-align: center;
    padding-top: 240px;
}
.App-header {
    margin-top: 100px;
    text-align: center;
}
.App-intro {
    font-size: medium;
    line-height: 28px;
    padding: 0 10%;
    font-weight: 300;
}

.App-logo {
    height: 60px;
}

.App__header a.active {
    color: #fecb2c;
}

.App__homelink.active {
    color: #fff !important;
}

/*Hide the Settings link on iPhone5*/
@media only screen and (min-width: 480px){

    html {
        background-color: #f9f9fa;
    }

    .App__header {
        background-color: white;
        padding: 1.5rem 2rem;
    }

    .App__content {
        background-color: white;
        margin: 8% 10%;
        padding: 3rem;
        border: 1px solid #ededed;
        border-radius: 8px;
    }
}

@media only screen and (min-width: 1024px){
    .App__header {
        padding: 1.5rem 5rem;
    }

    .App__content {
        margin: 8% 20%;
        padding: 5rem;
    }
}

@media only screen and (min-width: 1600px){
    .App__header {
        padding: 1.5rem 9rem;
    }

    .App__content {
        margin: 8% 32%;
        padding: 5rem;
    }
}

@media (device-height: 568px) and (device-width: 320) and (-webkit-min-device-pixel-ratio: 2){
    .App__settings{
        display: none;
    }
}

/*Settings*/

.Settings {
    box-sizing: border-box;
    padding: .75em;
    position: absolute;
    width: 36%;
    background-color: inherit;
    right: 0;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}

.Settings p {
    color: black;
}

.Settings div:last-child > p:last-child {
    margin-bottom: 0;
}