:root {
    --White: #FDFDFD;
    --Green: #00FFC2;
    --Black: #000;
    --text-dark: #121212;
    --Red: #C75353;
}



/*--------------- Style für Landingpage --------------*/
/*Hintergrund Abdunkeln für Barrierefreieheit und so*/
body {
    background-color: var(--text-dark);
}
/*hintergrundbild & Layout*/
.background {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: url(../img/Startbild.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/*Button Style & Layout*/
.LegLosButton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--Green);
    width: 300px;
    height: 70px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* Text spezifisches layout für Welcome*/
p {
    color: var(--White, #FDFDFD);
    font-family: 'Oswald';
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 111.2%; /* 50.04px */
    text-align: center;
}