html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
    display: flex;
    height: 10vh;
    position: fixed;
    width: 95%;
}

#header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
}

header img {
    height: 100%;
}


main {
    display: flex;
    height: 100vh;
    overflow-x: auto; 
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; 
}

.main-container {
    display: flex;
    flex-direction: row;
    gap: 200px;
    align-items: center;
    padding: 0 200px;
    flex-shrink: 0; 
    min-width: max-content; 
    background-image: url('assets/background.png');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-attachment: scroll;
}

.miniatura {
    height: 45vh;
    width: auto;
    margin-top: -130px;
    flex-shrink: 0;
    filter: brightness(0.9) contrast(0.9);
    transition: all 0.2s;
}

.miniatura:hover {
    scale: 1.03;
    transition: all 0.2s;
}