@font-face {
  font-family: 'berkshire_swashregular';
  src: url('../fonts/berkshireswash-regular-webfont.eot');
  src: url('../fonts/berkshireswash-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/berkshireswash-regular-webfont.woff2') format('woff2'),
       url('../fonts/berkshireswash-regular-webfont.woff') format('woff'),
       url('../fonts/berkshireswash-regular-webfont.ttf') format('truetype'),
       url('../fonts/berkshireswash-regular-webfont.svg#berkshire_swashregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'yellowtailregular';
  src: url('../fonts/Yellowtail-Regular-webfont.eot');
  src: url('../fonts/Yellowtail-Regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Yellowtail-Regular-webfont.woff2') format('woff2'),
       url('../fonts/Yellowtail-Regular-webfont.woff') format('woff'),
       url('../fonts/Yellowtail-Regular-webfont.ttf') format('truetype'),
       url('../fonts/Yellowtail-Regular-webfont.svg#yellowtailregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

body{
  background-color: rgb(24, 22, 22);
}

.flex-container-column{
  display: flex;
  flex-direction: column;
  background: rgb(34,193,195);
  background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%); 
}

.flex-container-column > div{
  color: rgb(9, 10, 10);
  width: 300px;
  height: 120px;
  text-align: left;
  font-family: 'berkshire_swashregular';
  font-size: 18px;
  margin: 10px;
  padding: 10px;
}

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

h1, h2, h3{
  text-align: center;
  font-family: 'yellowtailregular';
  color: white;
}

#header-box{
  border: solid;
  border-radius: 25px 10px;
  border-width: 30px;
  border-color: black;
  background-image: url(../images/cool-background.png);
  margin: 5px;
}

/* inline navigation bar */
.flex-container-nav{
  display: flex;
  flex-direction: column;
}

#navigation{
  background-image: url(../images/cool-background.png);
  line-height: 150%;
  text-align: center;
  font-family: 'yellowtailregular';
  font-size: 20px;
}

#navigation li{
  display:inline;
  padding-right: 30px;
}

#navigation a:link{
  color: white;
  text-decoration: none;
}

#navigation a:visited{
  color: white;
  text-decoration: none;
}

#navigation a:hover{
  color:darkblue;
}

/* Footer */
#footer-image{
  border: solid;
  border-radius: 25px 10px;
  border-width: 30px;
  border-color: black;
}

/* makes sure the footer is readable for smaller windows */
@media(max-width: 900px){
  #footer-image{
    width: 85%;
  }
}

#lower-border{
  border-bottom-style: solid;
  margin-bottom: 5px;
  border-bottom: 5px;
}