body {
    background-color: rgb(10, 59, 8);
}

.kontakt_container {
    color: white;
    text-align: center;
}

.bold_text {
    font-weight: bold;
}

.karta {
    width: 500px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.karta:hover {
    transform: scale(1.1);
}

.div_form {
    margin: auto;
    border: 2px white solid;
    border-radius: 20px;
    width: 400px;
    height: 400px;
    color: white;
    background-color: rgb(87, 55, 35);
}

form {
    margin: auto;
    text-align: center;
}

.dontshow {
    border: none;
}

#email {
    margin-left: 4px;
}


.button {
    margin-top: 20px;
}

@media (max-width: 775px) {
    .karta {
        width: 250px;
    }

    .div_form {
        width: fit-content;
    }
}