html,
body {
    scroll-behavior: smooth;

    margin: 0;
    padding: 0;
    height: 100%;
    background: #000;

    /*background-image: url("background_01.jpg"); /* austauschbar */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    font-family: 'Rubik', monospace;
}

.wrapper {
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    letter-spacing: 0.02em;
    display: flex;
    gap: 0.4em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slogan {
    font-size: 100px;
    letter-spacing: 0.02em;
    display: flex;
    gap: 0.4em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.imprint {
    margin: 80px auto;
    max-width: 800px;
}

.imprint-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px auto;
    max-width: 800px;
    font-size: 14px;
}

.static {
    opacity: 0.9;
}

.dynamic {
    transition: opacity 0.4s ease;
}

.fade-out {
    opacity: 0;
}

.waitlist-form {
    display: flex;
    margin: 80px auto;
    gap: 8px;
    height: 50px;
    max-width: 400px;
    flex-direction: column;
    gap: 12px;
    /* Abstand zwischen allen Elementen */
}

.inputrow {
    display: flex;
    gap: 8px;
    /* Abstand zwischen Input und Button */
}

.inputrow input {
    flex: 1;
    padding: 14px 30px;
    border-radius: 25px;
    border: 2px solid #444;
    background: #000;
    font-size: 18px;
    color: #444;
}

.inputrow input:focus {
    outline: none;
    border-color: #fff;
    color: #fff;
}

.inputrow button {
    padding: 14px 18px;
    font-weight: 800;
    border-radius: 25px;
    border: none;
    background: #444;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.inputrow button:hover {
    background-color: #fff;
}

.waitlist-form .consent {
    font-size: 14px;
    color: #666;
    display: flex;
    max-width: 250px;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    /* extra Abstand unter Button */
    margin-left: 45px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
    opacity: 0.5;
}

#notification {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2b9827;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 1.0s ease;
}

#notification.show {
    opacity: 1;
}

.hidden {
    display: none;
}

a {
  color: #666;
  text-decoration: none; /* Unterstreichung weg */
  font-weight: 500;
  transition: color 0.5s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}