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

body {
  background-color: #EFC5E6;
  color: black;
  font-family: "fuzzy bubbles", Verdana;
}

aside {
  background-color: #7A4679;
  color: white;
  font-family: "fuzzy Bubbles", serif;
  width: 20%;
  padding-left: 3px;
  margin-left: 3px;
  margin-right: 3px;
  padding-right: 3px;
  float: right;
 box-shadow: 5px 5px 10px -6px #350A34;
  border: 7px;
  border-left-color: #B079AE;
  border-right-color: #623161;
  font-style: italic;
  border-radius: 41px 0px 34px 32px / 0px 0px 42px 42px;
}

nav {
  background-color: #733344;
  color: white;
  font-family: "Oregano", serif;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  border: 3px;
  border-color:#42063E;
  border-radius: 5px; 
  padding: 6px;
  margin: 5px;
}

header {
 background-color: #D2A5CE;
 font-family: "Oregano", serif;
 padding: 6px;
 margin: 3px;
 

}

<!--- Fonts--->

.oregano-regular {
  font-family: "Oregano", cursive;
  font-weight: 400;
  font-style: normal;
}

.fuzzy-bubbles-regular {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fuzzy-bubbles-bold {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 700;
  font-style: normal;
}
