@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

body {
    background-color: white;
    width: 100%;
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;

}

.content {
    background-color: #ddd;
    color: #333;
    padding: 5%;
    margin: 0 auto;
    width: 50%;
    border: 1px solid brown;
    -webkit-box-shadow: -15px 15px 3px 0px #808080;
    box-shadow: -15px 15px 3px 0px #808080;

}

h2 {
    text-align: center;
    font-size: 20pt;
    font-weight: bold
}

#dolt {
    font-size: 1.2em;
    font-style: italic;
}

.mezok input {
    width: 100%;
    height: 32px;
    margin-top: 8px;
    margin-bottom: 8px;
}

textarea {
    margin-bottom: 16px;
}

button[type=submit] {
    background-color: rgb(24, 158, 24);
    width: 100px;
    padding: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: black;
    border: 2px solid rgb(9, 51, 9);
    border-radius: 3px;
    float: right;
}

button[type=submit]:hover {
    background-color: rgb(95, 180, 95);
    color: white;
}
.hazi {
    background-color: #469e46;
    display: inline-block;
    text-align: center;
    color: white;
    text-decoration: none;
    width: 200px;
    padding: 10px;
    
}
.hazi:hover {
background-color: #ade2ad;
color: black;
}
@media only screen and (max-width:800px) {
    /* For tablets: */
    .content {
      width: 100%;   
    }
  }
  @media only screen and (max-width:500px) {
    /* For mobile phones: */
    .content {
      width: 100%;
      padding: 0;
    }    
}