* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background: #fff;
}

nav {
    padding: 20px;
    background: #f5f5f5;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
}

main {
    padding: 20px;
}

figure {
    margin: 20px 0;
}

img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

#overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    top: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    z-index: 9999;
}

.loading-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

#smooth-wrapper {
    overflow: hidden;
    position: relative;
}

#smooth-content {
    min-height: 100vh;
}

[data-barba="container"] {
    position: relative;
} 