body {
    min-height: 100vh;
    min-width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url('fond.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    width: 100vw;
    z-index: 2;
}

.logo {
    max-width: 220px;
    width: 20vw;
    min-width: 120px;
    height: auto;
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 5px;
}

.logo:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    background: rgba(0,0,0,0.20);
}

@media (max-width: 800px) {
    .logo-container {
        flex-direction: column;
        gap: 5vw;
    }
    .logo {
        width: 50vw;
        max-width: 300px;
    }
} 