/* general */

html {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Georgia, sans-serif;
    font-size: 16px;
    color: #fff;
}

p {
    font-weight: bold;
    line-height: 35px;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #1e90ff;
}

/* banner */
#banner {
    width: 50%;
    min-height: 50px;
    background-color: #45b6fe;
    padding-left: 2%;
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
}

/* top navigation */

#navigation {
    width: 50%;
    min-height: 40px;
    background-color: #45b6fe;
    text-align: center;
    line-height: 20px;
    margin: 10px auto;
}

.navbar ul {
   list-style-type: none;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}

.navbar a:hover {
    color: #1e90ff;
}

.navbar li {
    float: left;
    font-weight: bold;
}

/* vocab */

#vocab {
    width: 50%;
    height: 200px;
    border: 5px dotted #6ac5fe;
    color: #45b6fe;
    overflow-y: scroll;
    text-align: center;
    margin: 10px auto;
    
}

.vocab {
    color: #469fcf;
}

/* facts */

#facts {
    width: 51%;
    height: 800px;
    background-color: #6ac5fe;
    border: 5px solid #469fcf;
    overflow-y: scroll;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

.pic {
    width: 80%;
    border-radius: 10%;

}

/* decoration pics */

#pic1 {
    width: 20%;
    position: relative;
    left: 35px;
    bottom: 1050px;
    border: 5px solid #469fcf;
    border-radius: 10%;
    transform: rotate(-15deg);
}

#pic2 {
    width: 20%;
    position: relative;
    left: 1100px;
    right: 0;
    bottom: 750px;
    border: 5px solid #469fcf;
    border-radius: 10%;
    transform: rotate(15deg);
}

#pic3 {
    width: 20%;
    position: relative;
    right: 780px;
    bottom: 450px;
    border: 5px solid #469fcf;
    border-radius: 10%;
    transform: rotate(5deg);
}

