/*This css file will keep almost every element on the style.css file,
except the body, button, will be changed into something different.*/
  html {
  cursor: url(/yellow.png) auto;
  }
  h1, h2, h3, h4, h5, h6, p {
  color: white;
  font-family: verdana;
  }
  #alignment {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250vh;
  margin: 0;
  }
  a.one.visited, a.one.hover, a.one.link {
    color: lime;
    cursor: url(/yellow.png);
  }
  #center {
    margin: 0% auto;
    width: 60%;
    height: 100%;
    border: 3px dashed floralwhite;
    background-color: royalblue;
    padding: 10px;
  }
  #top {
    justify-content: start;
    width: 97%;
    height: 18%;
    border: dotted floralwhite;
    background-image: url(/backgrounds/ocean.jpg);
    padding: 10px;
  }
  #textcenter {
    text-align: center;
  }
  #elementcenter {
    display: flex;
    justify-content: center;
  }
  button {
    width: 20%;
    height: 85px;
  }