/* Diese Datei enthält die CSS-Stile für die Website. Sie definiert das Layout, die Farben und die Schriftarten. */

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 90vh;
    margin: 0;
    padding: 50px 0;
    font-family: Arial, sans-serif;
    background-color: #f9f2e2;
}

h1 {
    margin: 20px 0;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

img{
  max-width: 50vw;
}

.container-center{
  width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-center p{
  text-align: center;
}

a{
  color: #ffb042;
  text-decoration: underline;
}