@font-face {
  font-family: 'Alice';
  src: url('Fonts/Alice/Alice-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Euphoria';
  src: url(Fonts/Euphoria_Script/EuphoriaScript-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Charm';
  src: url(Fonts/Charm/Charm-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal; 
}
@font-face {
  font-family: 'CharmBold';
  src: url(Fonts/Charm/Charm-Bold.ttf) format('Truetype');
  font-weight: bold;
  font-style: normal;
}
body {
  background-color: rgb(223, 189, 13);
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100dvh; /* sorgt dafür, dass body mindestens die Höhe des Bildschirms hat */
}
header {
font-size: 3em;
line-height: 0.2;
font-family: 'Euphoria';
}
/* MAIN nimmt den verbleibenden Platz ein */
main {
  flex: 1;
}
h1 {
  color: rgb(255, 255, 255);
  font-size: 2.5em;
  margin: 0;
  font-family: 'Alice';
}
p {
  color: rgb(255, 255, 255);
}
footer {
  background-color: rgba(0,0,0,0.2);
  padding: 10px 15px;
  margin:0;
  line-height: 0.1;
  text-align: right;
  font-size: 1.4em;
  font-family: 'Charm';
}
img {
  height: 450px;
  width: 450px;

}
.maintext {
font-size: 1.5em;
font-family: 'Alice';
}