body {
    font-family: 'Klee One';
    font-weight: 600;
    text-align: center;
    background-image: url(lavender-4765498_1920.jpg); /* Pixabay Image - Free use under the Pixabay license: https://pixabay.com/photos/lavender-flower-blossoms-4765498/  */
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-y: hidden;
    overflow-x: hidden;
    color: rgb(0, 0, 0);
}

h1{
    font-size: 40px;
}

/* Schwarze zentrierte Box mit Elementen*/
.box{
    background-color: rgba(255, 255, 255, 0.65);
    z-index: 2;
    padding: 24px;
    border-radius: 30px;
}

/*Zentrierung der Box*/
.center{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Designbestimmung des Textes in der Box*/

.text{
    font-size: 20px;
}

.text-responsive {
    font-size: 20px;
    display: ;
}

/* Button Design */

.button {
    font-family: 'Itim';
    background-color: rgb(161, 22, 226);
    border: none;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin-top: 4px;
    cursor: pointer;
    width: 180px;
    transition: 0.3s;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
}

.button:hover {
    opacity: 1;
    background-color:rgb(210, 55, 245);
    transition: 0.3s;
}

.logo {
    width: 20vh;
    height: auto;
}

@media only screen and (max-width: 1000px) {
    .text-responsive {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    .box {
        scale: 80%;
    }
    .center {
        top: 50%;
    }
}
