/* Reset stylů pro základní prvky */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hlavní tělo stránky */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Nadpisy */
h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 30px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

/* Seznam navigace */
ul {
    list-style-type: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 30px;
}

ul li {
    display: inline-block;
    margin: 0 15px;
}

ul li a {
    text-decoration: none;
    color: #3498db;
    font-size: 1.1rem;
    font-weight: bold;
}

ul li a:hover {
    color: #2980b9;
}

/* Odkazy */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Formulář */
form {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Vstupní pole */
input[type="email"],
input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Textarea */
textarea {
    resize: vertical;
}

/* Pohlaví - radio buttony */
input[type="radio"] {
    margin-right: 10px;
}

/* Tlačítko odeslání */
input[type="submit"] {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #2980b9;
}

/* Tělo a detaily kontaktu */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

strong {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Zápatí */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #888;
}
/* CSS Document */
