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

/*main text*/
body {
  background-color: #ABD1FF;
  color: #333440;
  font-family: times;
}
/*title*/  

h1 {
  color: white ;
  border-bottom: 1px solid #FFFFFF;
  text-align: center;
  
  position: fixed
  
}

/*links*/
a:link{
  color:#2E40B8
}
a:hover {
  color:#826A99
}

/*about me*/
.box {
  margin: 30px;
  padding: 30px;
  height: 550px;
  font-size:1.5em;
  text-align: center
}

/*logo*/
.logo{
   margin: 0px;
  padding: 0px;
  height: 600px;
  width:600px; 
  position: static
}
img {
  height: 100%;
  width: 100%;
}
.contain {
  object-fit: contain;
}

/*buttons*/
.button, .button1, .button2{
  border: none;
  color: white;
  padding: 25px 62px;
  
  
  text-align: center;
  text-decoration: none;
  display: block;
  
  font-size: 20px;
  font-family: times;
  
  margin: 60px 20px;
  cursor: pointer;
  
}






