/* 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." */

@import url(https://fonts.bunny.net/css?family=alegreya:400,500,700,800i);

body {
  background-color: #a3aab5;
  color: black;
  font-family: Verdana;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	font-family: "alegreya";
}

a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
  
a:hover {
  text-decoration: underline dotted;  
}

#content {
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
}

#main {
   max-width: 75%;  
}

#related {
    
}

.page-header {
  font-weight: bold;
}

#recipe-intro {
  max-width: 40%;
  float: left;
  padding: 1em;
  }

#recipe-ingredients-list {
  max-width: 40%;
  float: left;
  margin-bottom: 2em;
  padding: 1em;
  border-style: outset;
  border-color: #CCC;
  border-radius: 15px 10px 25px;
  background-color: #5c5c5c;
  }
  
#recipe-ingredients-list ul {
  color: #FFF;
  }
  
#recipe-instructions {
  clear: both;
  padding: 1em;
  border-style: outset;
  border-color: #CCC;
  border-radius: 15px 10px 25px;
  max-width: 60%;
  background-color: #5c5c5c; 
  }

#recipe-instructions ol {
  color: #FFF;
  }

.nav-container {
  display: flex;
  justify-content: center;
  }

.navigation {
  border-bottom: 2px solid black;
  border-left: 2px solid black;
  border-right: 2px solid black;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  width: 200px;
  display: flex;
}

.navigation ul {
  list-style: none;
}