img {
    object-fit: cover;
    width: 100%;
    height: 200px;
}

h1 {
    text-align: center;
    padding: 10px;
    background-color: #e0e8e2;
}

p {
    padding: 15px;
    background-color: #e0e8e2;
}

body {
    font-family: sans-serif;
    color: #588163;
    background-color: #9ab3a1;
}

nav {
    height: 50px;
}

nav a {
    color: #588163;
    text-decoration: none;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    font-weight: bolder;
}

footer {
    text-align: center;
    color: #588163;
    font-weight: bolder;
    height:40px;
}

.vrste img {
    width: 100%;
    height: 300px;
    transition: transform 0.3 ease;
}

.vrste img:hover {
    transform: scale(1.1);
}

.kontakt {
    text-align: center;
}

@media (min-width: 1024px) {
    body {
        background-color: #9ab3a163;
    }

    main {
        width: 60%;
        margin: 0 auto;
        box-shadow: rgba(57, 59, 57, 0.649) 3px 2px 8px 0px;
        background-color: #344d3b4a;
    }

    .vrste img {
        width: 100%;
        height: 500px;
        clear: both;
    }
}