html, body {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	background: #f2f2f2;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
}

.hlavicka {
    margin: 0px auto 30px;
    text-align: center;

}

.hlavicka img {
    width: 100%;
    box-sizing: border-box;
    padding: 0 35px;
    margin-top: 25px;

}

.ilustrace {
    text-align: center;
}

.ilustrace img {
    width: 100%;
    box-sizing: border-box;
    padding: 0 35px;
}

.popis {
    margin-left: 35px;
    margin-right: 35px;
}

.popis h1 {
    font-family: clarendon-text-pro, Georgia, 'Times New Roman', Times, serif;
    font-size: 40px;
    color: #14203f;
}

.popis p {
    font-family: Helvetica, sans-serif;
    font-size: 22px;
    color: #4c5358;
    line-height: 1.3;
}

form {
	text-align: center;
}
form input {
	margin-top: 20px;
	border: 1px solid grey;
	height: 40px;
	width: 91%;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
}

.input_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error {
    color: red;
    font-family: Helvetica, sans-serif;
    margin-top: 10px;
}

input[type=submit] {
	background: #00918f;
	width: 200px;
	border: 2px solid #00918f;
    border-radius: 10px;
	color: white;
	font-size: 22px;
    font-weight: 600;
	height: 50px;
    margin-top: 50px;
}

input[type=submit]:hover {
	background: white;
	width: 200px;
	border: 2px solid #00918f;
	color: #00918f;
	font-size: 22px;
    font-weight: 600;
	height: 50px;
}

.footer {
    margin-top: 20px;
    margin-left: 35px;
    margin-right: 35px;
}

.spodek {
    margin: 17px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.spodek img {
    width: 130px;
}

.spodek p {
    font-family: Helvetica, sans-serif;
    color: #4c5358;

}

.mezera {
    height: 35px;
}

.input_box_recaptcha {
    margin-top: 20px;
}

.flash {
    text-align: center;
    font-size: 22px;
    font-family: Helvetica, sans-serif;
    color: #00918f;
    padding-top: 30px;
}


@media screen and (max-width: 480px) {
    .hlavicka img {
        padding: 0 15px;
    }
    .ilustrace img {
        padding: 0 15px;
    }
    .popis {
        margin-left: 15px;
        margin-right: 15px;
    }
    footer {
        margin-left: 15px;
        margin-right: 15px;
    }
    .spodek img {
        width: 100px;
        margin-right: 50px;
    }
}
