@keyframes screensaver {
  0% { background-position: 0% 0%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  
  background-image:url('../img/school_picture.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flying-image {
  position: absolute;
  width: 100px; /* Bildgröße */
  height: 100px; /* Bildgröße */
  background-image: url('../img/dino.jpg'); /* Dein Bild */
  background-size: cover;
  border-radius: 50%; /* Optional, falls du ein rundes Bild willst */
}

.login-box {
  background: white;
  padding: 20px;
  border-radius: 40px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 500px;
  text-align: center;
}

input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 10px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}