/* 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: linear-gradient(135deg, purple 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  color: black;
  font-family: Verdana;
}

h1{
  text-align: center;
  font-size: 70px;
  color: white;
  }

  
.navbar{
  background: linear-gradient(135deg, purple 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 98%; 
  margin-right: 10px;
  margin-left: 10px;
  z-index: 10;
  }

.main{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 95%; 
  height: 1000px;
  margin-right: 10px;
  margin-left: 10px;
  padding-top: 250px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: white;
  color: black;
  }
  
.info{
  border: 5px solid purple;
  padding: 10px;
  background-color: white;
  color: purple;
  margin: 10px;
  margin-bottom: 30px;
  }

button{
  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: purple;
  background-color: white;
  font-size: 30px;
}

button:hover{
  background-color: purple;
  color: white;
  border-bottom: 6px solid purple;
  border-right: 3px solid purple;
  }
  
.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: DarkOrchid;
  color: white;
  border-bottom: 6px solid DarkOrchid;
  border-right: 3px solid DarkOrchid;
  border-top: 6px solid DarkOrchid;
  border-left: 3px solid DarkOrchid;
  }
  
#wrappedimage{
  float: right;
  width: 250px;
  border: 4px solid purple;
}
  
a{
  text-decoration: underline;
  }
a:link{
  color: purple;
  }
a:hover{
  color:DarkMagenta;
  }
a:active{
  color: DarkOrchid;
  }
a:visited{
  color: DarkMagenta;
  }
