body {
    font-family: Arial, Helvetica, sans-serif;
    padding: 40px 0px;
    background-color: lightgrey;
    display: flex;
    justify-content: center;
    margin: 0px;
  }

  main {
    border-radius: 20px;
    min-width: 250px;
    max-width: 600px;
    min-height: 700px;
    text-align: left;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px grey;
  }


  a {
    display: inline-block;
    text-align: center;
    border-radius: 16px;
    border: 1px solid black;
    margin: 5px;
    padding: 5px;
  }

  li:last-child a {
    margin-right: 0;
  }

  
  input[type=button], .normalbutton {

    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    border: 1px solid black;
    background-color: black;
    -webkit-print-color-adjust: exact;
    padding: 5px;
    box-sizing: content-box;
  }
  

  input[type=button]:active, .normalbutton:active {
    color:  black;
    background-color:white ;
    background: white;
  }
  

  @media print {
      main {
        box-shadow: none;
        padding: 0px;
        margin: 0px;
      }
  }

  .newpage {
    height: 60px;
  }

  @media print {
    .newpage {
      height: 0px;
      clear: both;
      page-break-after: always;
    }
  }


img, video {
  max-width: 100%;
}

  