/* 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: purple;
  color: black;
  font-family: Verdana;
}

h1{
  text-align: center;
  font-size: 85px;
  }
.navbar{
  background-image: linear-gradient(to bottom, yellow, deeppink);
  position: fixed;
  left: 0;
  top: 0;
  width: 98%; 
  margin-right: 10px;
  margin-left: 10px;
  z-index: 10;
  border-top: 10px solid purple;
  }

.main{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 95%; 
  margin-right: 10px;
  margin-left: 10px;
  padding-top: 300px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: white;
  color: black;
  }
  
button{
  border-top: 6px solid black;
  border-bottom: 6px solid black;
  border-left: 3px solid black;
  border-right: 3px solid black;
  width: 20%;
  height: 60px;
  color: black;
  background-color: white;
  font-size: 30px;
}

button:hover{
  background-color: purple;
  color: white;
  border-bottom: 6px solid DarkSlateBlue;
  border-right: 3px solid DarkSlateBlue;
  }
  
.currentpage{
  border-top: 6px solid purple;
  border-bottom: 6px solid purple;
  border-left: 3px solid purple;
  border-right: 3px solid purple;
  width: 20%;
  height: 60px;
  color: white;
  background-color: purple;
  font-size: 30px;
  }
.currentpage:hover{
  background-color: purple;
  color: white;
  border-bottom: 6px solid purple;
  border-right: 3px solid purple;
  }

button:active{
  background-color: MediumOrchid;
  color: white;
  border-bottom: 6px solid MediumOrchid;
  border-right: 3px solid MediumOrchid;
  border-top: 6px solid MediumOrchid;
  border-left: 3px solid MediumOrchid;
  }
  
#wrappedimage{
  float: left;
  width: 250px;
  border: 4px solid purple;
  margin-right: 15px;
}
  
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: purple;
  color: white;
  text-align: center;
  z-index: 10;
}
  
.footerimage{
  width: 18%;
  margin: 15px;
}

a{
  text-decoration: none;
  }
