 /* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
     HTML content. To learn how to do something, just try searching Google for questions like
     "how to change link color." */
  
/* Kopf */
 .head {
    font-family: Verdana;
    background-color: #000000;
    color: white;
    text-align: center;
    height: 10vh;
  }
  
    .overhead-text {
     font-size: 50px;
     font-weight: 700;
    
  }

  
  /* Körper */
    body {
    background-image: url("https://dungeon-hamsterrad.neocities.org/assets/img/background-dungeon.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    height: 100vh;
    margin: 0;
  
    font-family: Verdana;
  }
  
  .torso {
    font-family: Verdana;
    color: white;
    height: 75vh;
  }
  
  .gateway {
      position: absolute;
      top: 50vh;
      left: 100vh;
  }
  
    .hand {
    height: 350px;
    width: 350px;
    
    position: relative;
    top: 342px;
    left: 1500px;
  }
  
  /* Füße */
  
  .foot {
    font-family: Verdana;
    background-color: #000000;
    color: white;
    text-align: center;
    height: 10vh;
  }
  

  

  
  
  /* Knopf */
  
  .gate {
  border: 0;
  line-height: 2.5;
  padding: 0 20px;
  border-radius: 10px;
  background-color: tomato;
  box-shadow:
    inset 2px 2px 3px rgb(255 255 255 / 0.6),
    inset -2px -2px 3px rgb(0 0 0 / 0.6);
}

.gate:hover {
  background-color: black;
}

.gate:active {
  background-color: white;
  box-shadow: 
    inset -2px -2px 3px rgb(255 255 255 / 0.6), 
    inset 2px 2px 3px rgb(0 0 0 / 0.6);
}

