@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(340deg, rgb(106, 122, 171), rgb(240, 235, 235));
    background-repeat: no-repeat; 
}    

main{
    height: 95vh;
    display: flex;
    padding: 3%;
}

.kontakt{
    height: 100%;
    width: 33%;
    min-width: 350px;
    padding: 0 3%;
    font-family: 'Roboto', sans-serif;
    overflow: scroll;
}

.kontakt h1{
    display: none;
}

.kontakt img{
    transform: translateX(-11%);
}

.adresse, .telefon{
    margin-top: 5%;
}

.telefon a{
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.textcolor{
    color: rgb(106, 122, 171);
    font-weight: bold;
}

form{
    margin-top: 10%;
    display: flex;
    flex-direction: column;
}

.input-field{
    border: none;
    margin-bottom: 3%;
    height: 2.5rem;
    border-radius: 5px;
    padding-left: 5%;
}

.input-field::placeholder{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(163, 156, 156);
}

#nachricht{
    height: auto;
}

.korrekt{
    border: 2px solid green;
}

.fehler{
    border: 2px solid red
}

button{
    background-color: rgb(106, 122, 171);
    color: white;
    cursor: pointer;
}

button:disabled{
    opacity: 0.4;
}

.under-construction{ 
    width: 67%;
    flex-direction: column;
}

.headline{
    height: 25%;
    padding: 3% 5%;
}

h1{
    text-transform: uppercase;
    text-align: center;
    color: rgb(190, 80, 87);
    font-family: "genica", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: clamp(3.5rem, 70%, 2rem);
    text-shadow: 3px 3px 2px #949292;
}

.picture{
    height: 80%;
    background-image: url(../img/Therapie.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}


@media(max-width: 850px){
    body{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    main{
        height: auto;
        width: auto;
    }

    .kontakt h1{
        display: block;
        font-size: 1.5rem;
        margin: 12% 0 12% 0;
    }

    .kontakt img{
        transform: translateX(0);
    }
    
    .picture, .headline{
        display: none;
    }

}

