html,body{
  font-family:Arial, Helvetica, sans-serif;
}
.container{
  display:flex;
}
#banner{
  justify-content: center;
  align-items: center;
  background-color: rgb(65, 65, 65);
  color:white;
}
#banner h1{
  font-size: 50px;
  text-shadow: 1px 1px black;
}
.button{
  background-color: rgb(31, 31, 31);
  color:white;
  padding:30px;
  margin:30px;
  font-size:20px;
  text-decoration: none;
  border-radius:8px;
}
#body{
  margin-top:20px;
}
#snapshot{
  flex:1;
  text-align:center;
}
#snapshot img{
  width:90%;
  border-radius:2px;
  box-shadow:2px 2px 2px black;
}
#description{
  flex:1;
  text-align:center;
}
h2{
  font-size: 40px;
}