body {
    background-color: #c0c0c4;
    margin: 0;
}

#hamburger-menu{
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    position: fixed;
    top: 10px;
    left: 10px;
    cursor: pointer;
    z-index: 1;
}

#navbar-container{
    background-color: black;
    color: white;
    font-family: inherit;
    font-weight: 600;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    list-style-type: none;
    padding: 5px 0;
    margin: 0;
    justify-content: center;
}

#navbar-container a:hover {
    background-color: #FF671D;
}

#navbar-container a {
    display: inline;
    text-decoration: none;
    color: #FFF;
    padding: 10px 20px;
}

/*hide the navbar on small screens initially*/
@media (max-width: 700px){
    #navbar-container {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        width: 100%;
        background-color: #000;
    }

    #navbar-container a {
        display: block;
        padding: 15px;
        text-align: center;
    }

    #hamburger-menu {
        display: block;
        background-color: #000;
    }
}

/* Shows the navbar when .show class is included */
#navbar-container.show {
    display: flex;
    flex-direction: column;
    position: fixed;
}

.section {
    align-content: center;
    min-height: calc(100vh - 200px);
    padding: 100px;
}

.section .content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px){
    .section {
        padding: 10vw;
    }

    .section {
        min-height: calc(100vh - 20vw);
    }
}

#home {
    background-color: rgb(119, 196, 225);
    text-align: center;
}

#home h1{
    font-family: Inherit, sans-serif;
    letter-spacing: 1px;
}

#home p {
    font-family: Californian FB, sans-serif;
    color: #333344;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 2em;
}

#instructions {
    background-color: rgb(101, 229, 144);
    font-family: Californian FB, sans-serif;
}

#instructions > .content {
    max-width: 1100px;
}

@counter-style numbers-no-dot {
    system: numeric;
    symbols: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9';
    suffix: "";
}

#instructions .steps {
    margin: auto;
    padding-left: 0;
}

#instructions .step {
    display: flex;
    flex-wrap: wrap;
    margin-top: 6em;
    margin-bottom: 6em;
}

#instructions .step img {
    max-width: 100%;
}

#instructions .step:nth-of-type(2n) {
    flex-direction: row-reverse;
    text-align: right;
}

#instructions .step > .details {
    flex: 1 1 30%;
}

#instructions .step > .details p {
    margin: 10px;
}

#instructions .step .number {
    font-size: 1.9em;
    font-weight: 600;
}

#about{
    background-color: rgb(227, 195, 118);
    font-family: Californian FB, sans-serif;
    line-height: 2em;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-container img {
    flex: 0 0 30%;
    max-width: 100%;
}

.about-container .description {
    flex: 1 1 50%;
    width: 100%;
    margin: 30px;
}

#donate{
    text-align: center;
    line-height: 2em;
}

.link-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: 2em;
}

.link-button {
    text-align: center;
    width: max-content;
    background-color: #202024;
    margin: 0.4em;
    padding: 1.3em 1.5em;
    border-radius: 5%;
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
}

.link-button:hover {
    background-color: #FF671D;
}

.chrome {
    display: none;
}

.firefox {
    display: none;
}

.browser-fallback {
    display: none;
}
