@import url('https://fonts.googleapis.com/css?family=PT+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page {
    display: flex;
    flex-wrap: wrap;
    margin-left: 1vw;
    margin-right: 1vw;
    font-family: 'PT Sans', sans-serif;
}

.section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    flex-direction: column;
    padding-bottom: 2vw;
}

.twitter {}

.footer {
    background-color: #D6E9FE;
    padding-top: 1vw;
    padding-bottom: 1vw;
}

.header-1 {
    background-color: #ffb60d;
    color: #292929;
    padding-left: 1vw;
}

.header-2 {
    background-color: #ffb60d;
}

.headerimg {
    max-width: 100%;
}

.unit {
    width: 100%;
    color: #323232;
    padding-top: 2vw;
}

#datepicker {
    padding-left: 1vw;
}

h1 a {
    text-decoration: none;
    color: #292929;
}


/* Mobile Styles */
@media only screen and (max-width: 400px) {
    body {}

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.2em;
    }

    p {
        font-size: 1em;
    }
}

/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {

    .header-1,
    .header-2 {
        width: 50%;
    }

    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2em;
    }

    p {
        font-size: 1.5em;
    }
}

/* Desktop Styles */
@media only screen and (min-width: 961px) {
    .page {
        width: 960px;
        margin: 0 auto;
    }

    .header-1 {
        width: 75%
    }

    .header-2 {
        width: 25%;
    }

    .content {
        width: 70%;
    }

    .twitter {
        width: 30%;
    }


    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2em;
    }

    p {
        font-size: 1.5em;
    }
}
