/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* CSS for box sizing */
* {
  box-sizing: border-box;
}

/* Temporary red lines for boxes 
* {
  border: 1px solid red !important;
} */

/*Body settings*/
body {
  text-align: center;
  font-family: sans-serif;
  color: white;
  background: pink;
  padding: 0px;
  margin: 0px;
  background-image: url('https://images.unsplash.com/photo-1581084158167-c9578e5e858e?q=80&w=3087&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*Navigation bar settings*/
nav {
  background: lavender;
  background-color: hsla(300, 100%, 50%, 0.2);
  padding: 10px 10px;
}

/*Navigation bar list item settings*/
li {
  display: inline-block;
  padding: 10px;
}

/*navigation bar links settings*/
nav a {
  color: white;
  font-family: 'Courier New';
  text-decoration: none;
}

/*flex container settings*/
div.container {
  display:flex; /*creates the felx container*/
  justify-content: center; /*rows*/
  justify-items: center; /*rows*/
  align-content: center; /*cols*/
  align-items: center; /*cols*/
  flex-wrap: wrap;
  flex-direction: column;
  height: 600px;
}

/*flex items settings*/
div.item {
  display: inline-flex;
  align-items: center;
  max-width: 600px;
}

/*header settings*/
h1 {
  padding: 5px;
  margin: 5px;
}

/*paragraph settings*/
p {
  padding: 5px 10px;
  margin: 5px 5px;
}

.button {
  padding: 10px 10px;
}

/*footer settings*/
footer {
  color: white;
  font-family: 'Courier New';
  background: lavender;
  background-color: hsla(300, 100%, 50%, 0.2);
  width: 100vw;
  height: 50px;
  padding-top: 5px;
  padding-bottom: 75px;
  bottom: 0;
  position: fixed;
}