body {
    margin: 0;
    font-family: "Courier Prime", monospace;
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    all: unset;
}

a:hover {
    cursor: pointer;
}


.app {
    text-align: center;
    min-height: 100vh;
    color: black;
    display: flex;
    flex-direction: column;

}

.thescene-logo p {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.title {
    font-size: 2.2rem;
    margin-top: 2.5rem;
}

.tagline p {
    font-size: 1.1rem;
    margin-top: 0;
}

.gig-title p {
    font-size: 2.3rem;
    margin-bottom: 1rem;

}


.gig-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 30rem; /* Adjust this value as needed */
    margin: 0 auto;
}


.gig-poster img {
    max-height: 30rem;
    max-width: 90%;
    height: auto;
    width: auto;
    border: 1px solid;
    object-fit: contain;
}

.gig-poster:hover img {
    box-shadow: 0 0 3px black;
    transform: translateY(-10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.separator p {
    margin-top: 2rem;
    font-size: 4rem;
    margin-bottom: 0rem;
}