/* CSS Document used for the Web project 1 assignment
Author: Kailynn Anderson
Course: ITWP 1000
File: Styles.css
 */

/* universal code */

/* testing */


* {
    box-sizing:border-box;
    font-size: 20px;
}


.flex-container1 {
  display: flex;
  background-color: #e9e5f1;
  height: 200px;
  width: 100%;
  margin:auto;
  justify-content: center;
  align-content: center;
}
h1 {
  text-align: center;
  font-family: "Brush Script MT", cursive, sans-serif;
  font-size: 4em;
  text-shadow: #dca2a1 5px 5px;
}

 .flex-container2 {
  display: flex;
  flex-direction: row;
  background-color: #383638;
  height: auto;
  border-bottom: #dca2a1 solid 5px;
  justify-content: center;
  align-content: center;
  margin: 0;
 }

 .flex-container2 a {
  display: inline-block;
    color: #e9e5f1;
    text-align: center;
    padding: 14px 10px;
    text-decoration: none;
    text-align: center;
 }
 nav a:hover {
  background-color: #888094;
 }

 body {
  background-color: #857f9c;
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin: 10px;
 }

 .flex-container3 {
    display: inline-flexbox;
    flex-wrap: wrap;
    flex-direction: row;
    background-color: #e9e5f1;
    border-bottom: #383638 solid 3px;
    height: 500px;
    width: 100%;
    justify-content: space-around;
    align-content: center;
  }

  .flex-container3 h2 {
    font-size: 2em;
    text-shadow: #dca2a1 5px 5px;
    padding-top: 10px;
    margin-top: 1px;
    align-items: end;
  }

  .flex-container3 p {
    margin: 0 25px 0 25px;
    padding: 40px;
  }

p {
    line-height: 30px;
}
 ul {
    list-style: none;
 }

 .flex-container3 h2 {
  padding: 10px;
}

 h3 {
  font-size: 2em;
  text-shadow: #dca2a1 5px 5px;
 }

 .flex-container4 {
  display: flexbox;
  flex-flow: column wrap;
  background-color: #e9e5f1;
  border: #383638 solid 3px;
  box-shadow: #dca2a1 8px 8px;
  justify-content: center;
    align-content: center;
  width: 800px;
  margin: 100px 200px 100px 200px;
 }

 .flex-container4 p {
  padding: 20px;
 }

.flex-container4 .creator {
  background-color: #383638;
  font-size: 40px;
  height: auto;
  margin-bottom: 40px;
  padding: 10px;
  color: #dca2a1;
}

.flex-container4 .d-imgs {
  border: #383638 solid 5px;
}


.flex-container4 li {
  background-color: #383638;
  height: auto;
  padding: 10px;
  color: #dca2a1;
}

img {
  border: #383638 solid 5px;
  box-shadow: #dca2a1 5px 5px;
}

.flex-container5 {
  background-color: #383638;
  padding: 20px;
  color: #dca2a1;
}


