html {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
body {
    height: 100%;
    width: 100%;
}

#passes {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 500px;
    justify-content: center;
    margin: 0 auto;
}

#root {
    height: 100%;
    width: 100%;
}

#root h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#passes img {
    transition: all 0.3s ease;
    cursor: pointer;
}

#passes img:hover {
    transform: translateY(-2px);
}

