@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Fredoka, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    color: #333;
    font-size: 2.5rem;
    margin: 1rem 0;
}

.photo-viewer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.photo-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    aspect-ratio: 16/9;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f0f0f0;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.navigation button {
    padding: 10px 20px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: background 0.2s;
}

.navigation button:hover {
    background: #555;
}

#photoCounter {
    font-size: 1rem;
    color: #666;
}

.view-full {
    display: inline-block;
    padding: 10px 20px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 20px;
    transition: background 0.2s;
}

.view-full:hover {
    background: #357abd;
}
