/* 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.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Gluten:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Caveat:wght@400..700&family=Gluten:wght@100..900&display=swap');


body {
  background-color: #FFE5E7;
  color: black;
  font-family: Verdana;
}

h1 {
padding-left: 3ch;
}

#main {
height:100%;
margin: 5vh 10vw;
border: grey 2px solid;
 border-radius: 10px; 
} 

content {
  width:100%;
  display: block;
  background-color: lightcyan;
  text-align:center;
  font-family: "Caveat Brush";
  font-size: 1.7em;
}

#home {
 display:flex; 
}

#banner {
  display:block;
  padding: 50px 0;
  background-size: cover;
  background-image: url("Purple sky (orginal).png");
}

#menu {
  background-color: #CCCCFF;
  padding-right: 20px;
  list-style-type: none;
  margin-top:0;
  margin-bottom:0;
  width: 20%;
}

a {
  color:inherit;
text-decoration: none;
}

li {
margin-top:15px;
font-size:1.5rem;
font-family: "Brush Script MT", cursive;
}

#title {
  color: navy;
  font-family: "Gluten";
  font-size: 2.5em;
}

#image1 {
width: 300px;
height: 300px;
border: 2px solid black;
border-radius:20px;
}

#image2 {
width: 300px;
height: 300px;
border: 2px solid black;
border-radius:20px;

li:hover {
  color: #E18AAA;
  transition: 0.1s;
}
