* {
    font-family: 'Kiwi Maru', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

h1 {
    font-size: 1.5em;
}

.welcome-message, .log-in, .forest  {
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(184, 219, 184, 0.712);
    width: 40%;
    margin: auto;
    padding-bottom: 5%;
}

.log-in input{
    margin-left: 5%;
}

.log-in h1 {
    text-align: center;
}

.forest-link {
    background-color: rgb(119, 71, 71);
    text-decoration: none;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    text-align: center;
    color:white;
    text-transform: capitalize;
    width: 70%;
    margin-left: 14%;
}

.forest-link:hover {
    color: #587759;
    background-color: rgb(3, 3, 3);
}

/*Navigation buttons from https://www.w3schools.com/css/css3_buttons.asp */
#enter_forest, #feed-forest, #reset {
    background-color: #587759; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

#reset {
    margin-top: 10%;
}

#reset:hover{
    background-color: red;
    color: black;
}

#enter_forest:hover, #feed-forest:hover {
    color: #587759; /* Green */
    border: none;
    background-color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

/*https://wallpaperaccess.com/fairy-forest both backgrounds from here*/
/*all pages*/
#index-page, #forest-gate, #base-page {
    background: url("../images/foreststage0.png") no-repeat center center fixed;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 200%;
}

.bg-img {
    /* The image used */

    /*can change min-height back, but when it was set to pixels it threw everything
    off the bottom of the screen*/
    min-height: 6em;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* Needed to position the navbar */
    position: relative;
}
  
/* Position the navbar container inside the image */
.container {
    position: absolute;
    margin: 20px;
    width: 100%;
}

/* The navbar */
.topnav {
    overflow: hidden;
    background-color: rgb(119, 71, 71);
}

/* Navbar links */
.topnav a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: rgb(211, 195, 195);
    color: black;
}

/*current score to be on the far right of nav bar*/
#show-score {
    float: right;
    margin-right: 10%;
    color: white;
}

#quote-text {
    color: white;
    background-color: rgba(0, 0, 0, 0.418);
    width: 40%;
    margin-left: 30%;
    margin-top: 0;
    vertical-align: middle;
    text-align: center;
}