html, body {
    height: 100%;
}

body {
    background-color: #2B6619;
    font-family: Ubuntu, sans-serif;
    text-align: center;
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

h1 {
    color: #FEDEA2;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

p {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

button {
    background: #FEDEA2;
    color: #2B6619;
    display: inline-flex;
    padding: 25px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

button:hover,
button:focus-visible {
  background: #e6c68f; /* etwas dunkler */
  transform: translateY(-2px);
}

.highlight {
    color: #FEDEA2;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 50px;
}

#header-logo {
    max-width: 90%;
    height: auto;
    aspect-ratio: 200/43;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
    main {
        padding: 0 20px;
    }
}