* {
    box-sizing: border-box;
    margin: 0;
    padding: 0px;
  }

  main {
    display: block;
    unicode-bidi: isolate;
  }

  body{
      background-color: white;
      text-align: center;
  }
  
  h1{
      color: white;
      text-align: center;
      padding-top: 2rem;
      padding-bottom: 2rem;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: bolder;
      font-style: italic;
      font-size: 6vh;
  }
  
  a:hover{
      color: black;
  }
  
  a{
      padding: 10%;
      font-size: 2.5vh;
      color: white;
      font-family: Arial, Helvetica, sans-serif;
  }
  
  header{
    width: 100%;
    background-color: #CCB9AC;
  }

  button{
    position: relative;
    top: 20px;
    background-color: #CCB9AC;
    height: 150px;
    width: 150px;
    border-radius: 20px;
    border: 0px;
  }

  button:hover {
    background-color: #CCB9AC;
    border: solid 3px white;
    transition: all 0.4s;    
}