  body{
    background-color: slateblue;
    text-align: center;
    color: whitesmoke;
    font-family: Arial;
    
  }

/*CSS für Geräte mit Mauszeiger */
@media (pointer: fine) {
  .ueberschrift{
    padding-bottom: 50px;
    font-size: 6vh;
  }
  .knopf{
    border: solid 1px;
    border-color: whitesmoke;
    background-color: lightcyan;
    border-radius: 15px;
    padding: 10px;
    width: 30vw;
    font-size: 1.5vh;
    margin-bottom: 30px;
  }
}
/* CSS für Touchscreen-Geräte */
@media (pointer: coarse) {
  .ueberschrift{
    padding-bottom: 50px;
    font-size: 6vh;
  }
  .knopf{
    border: solid 1px;
    border-color: whitesmoke;
    background-color: lightcyan;
    border-radius: 15px;
    padding: 20px;
    width: 70vw;
    font-size: 2vh;
    margin-bottom: 30px;
  }
}