*{
    font-family: 'Montserrat', sans-serif;


}
:root{
    scroll-behavior: smooth;
}
h3{
    text-align: center;
    color: white;
    background-color: black;
    padding: 20px;
    margin-bottom: 30px;
}
.program{
    text-align: center;
    display: flex;
    width: 95%;
    justify-content: space-between;
    min-height: 100vh;
    align-items: flex-start;
    margin: auto;
}
label{
    margin-top: 30px;
}

.form{
    width: 45%;
    height: 100%;
}
.podglad{
    width: 50%;
    height: 80vh;

}
.email {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    overflow-y: scroll;
    border: black solid 2px;
}

form {
    display: flex;
    flex-direction: column;
}

input{
    padding: 5px 10px !important;
}

.input-tekst {
   min-height: 30px;
    margin-top: 30px;
    border-radius: 30px;
    padding: 2px;
    border-width: 2px;
}
textarea{
    padding: 15px !important;
}
::placeholder{
    color: #eaeaea;
    font-size: 20px;
}


::placeholder {
    text-align: center;
}

button {
    margin-top: 30px;
    background: black;
    color: white;
    font-weight: 800;
    height: 50px;
    border-radius: 30px;
}
.kod{
    width: 80%;
    margin: auto;
}
.formularz {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
}

.instr{
    text-align: center;
    background: black;
    margin-top: 30px;
    padding: 10px 20px;
    color: white;
    margin: auto;
    font-weight: 800;
    margin-bottom: 30px;

}
.link{
    width: 100%;
    text-align: center;
    margin: 30px 0;
}

.opis{
    width: 80%;
    margin: auto;
    margin-top: 50px;
}
h1{
    text-align: center;
    font-size: 30px;
}
li {
    text-align: left;
    margin-top: 10px;
}

.obrazek{
width: 45vw;
height: auto;
margin-top: 30px;
margin-left: 20px;
border: solid 2px black;

}

.center{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.twarz{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    animation: obrot infinite 5s;

}

@keyframes obrot {
    0%{
        transform: rotate(0deg);
    }

    100%{
        transform: rotate(360deg);
    }
    
}
@media screen and (max-width: 911px){
    .program {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .form{
        width: 100%;
    }
    
    .podglad {
        width: 100%;
        margin-top: 30px;
        height: 80vh;
    }

    .obrazek{
        width: 90vw;
        height: auto;
        margin-top: 30px;
        margin-left: 20px;
        border: solid 2px black;
        
        }

        img.obrazek {
            margin-left: -25%;
        }
}

