

#textarea {
    resize: none;
}

.contact-form {
    margin: auto;
    max-width: 600px;
    width: 80%;
    display: grid;
    justify-items: stretch;
}

.contact-form > * {
    font-size: clamp(1.1rem, 0.5vw + .8rem, 4rem);
    border: none;
    line-height: 1.6;
}

.contact-form label {
    padding: 12px 0 3px 0;
    font-weight: bold;
}

.form-btn {
    width: 200px;
    border-radius: 40px;
    padding-block: 16px;
    justify-self: center;
    margin-top: 40px;
    background-color: var(--pink);
    color: white;
    text-align: center;
    cursor: pointer;
}

.form-btn:hover {
    width: 216px;
    transition: 0.3s;
}

.kontakt-text {
    max-width: calc(30 * (0.4vw + 1rem));
    width: 95%;
    margin: auto;
    margin-bottom: 20px;
}

input:focus, textarea {
    outline-color: var(--pink);
}

.pop-up {
    width: calc(42 * (0.4vw + 1rem));   
    max-width: 100vw; 
    position: absolute;
    height: 100%;
    background-color: var(--pink);
}

.pop-up p {
    margin-top: 20vh;
    text-align: center;
    font-size: clamp(1.1rem, 0.8vw + 0.8rem, 4rem);
    font-family: bold;
    line-height: 1.6;   
    font-family: 'Fira Sans';
}

.pop-up a {
    width: 200px;
    position: relative;
    display: block;
    margin-inline: auto;
    padding-block: 12px;
    border: 2px solid var(--grey-dark);
    color: var(--grey-dark);
    border-radius: 30px;
    text-align: center;
    font-size: clamp(1.1rem, 0.8vw + 0.8rem, 4rem);
    font-family: 'Fira Sans';
}

.pop-up a:hover {
    border: 2px solid rgb(255, 255, 255);
    color: white;
}