
#main{
  display: flex;
  justify-content: center;

}
html{
  background-image: url("blur.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
}

/* CSS */
div{
  display: flex;

}
a{
  display: block;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  color: rgb(233, 224, 224);
  cursor: pointer;
  border: 3px solid;
  padding: 0.25em 0.5em;
  box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
  
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-left: 50px;
  margin-top: 250px;

}

a:active {
  box-shadow: 0px 0px 0px 0px;
  top: 5px;
  left: 5px;
}

a:hover{
  background-color: rgb(109, 148, 199);
}

@media (min-width: 768px) {
  a {
    padding: 0.25em 0.75em;
  }
}