body {
    background-color: #1e3d58;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    user-select: none;
    overflow: hidden;
    height: 100vh;
}

header {
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 15vh;
    box-sizing: border-box;
}

.logo img {
    max-height: 100px;
    max-width: 100%;
}

.title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-left: 20px;
}

@media (max-width: 600px) {
    .title {
        font-size: 1.2rem;
    }
}

.title div {
    margin: 5px 0;
}

.zoom-container {
    width: 100%;
    height: 85vh;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    overflow: hidden;
}

.zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.without-desserts {
    padding: 15px 20px;
}

.without-desserts .title {
    color: white;
}

.without-desserts h2.title {
    font-size: 1rem;
}