body {
    background-image:url(obrazky/pozadi.jpg);
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 40px 0;
    text-align: center;
}
.container {
    background: white;
    width: 900px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #e75480;
    font-size: 48px;
    margin-bottom: 10px;
}

hr {
    width: 900px;
    height: 3px;
    background-color: #e75480;
    border: none;
    margin: 10px auto 30px auto;
    border-radius: 2px;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.menu a {
    text-decoration: none;
    color: #e75480;
    font-weight: bold;
    background: #ffe0f0;
    padding: 12px 24px;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 18px;
}

.menu a:hover {
    background: #e75480;
    color: white;
}
.hlavni-fotka {
    width: 350px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    margin-top: 30px;
}
.foto{
    width: 300px;
    object-fit: cover;
}
p{
    width: 80%;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
}
.zpet a {
    text-decoration: none;
    color: #e75480;
    font-weight: bold;
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 20px;
    transition: 0.3s;
    font-size: 18px;
}