* {
    font-weight: 400;
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: black;
}

body {
    background-color: hsla(76, 100%, 78%, 1);
    padding: 0px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    overflow-y: hidden;
    overflow-x: hidden;
    width: 100%;
}

body.loaded {
    opacity: 1;
}

h1 {
    margin-bottom: 40px;
    padding: 0;
    margin-top: 0;
}

.show-list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 25px;
}

.show-list li {
    padding: 12px 0;
    border-bottom: 1px solid black;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.show-list li.past-event {
    text-decoration: line-through;
}

.show-info {
    flex: 1;
}

.show-date {
    font-size: 19px;
    margin: 0 0 7px 0;
}

.show-venue {
    font-size: 15px;
    margin: 0;
    color: black;
}

.show-tickets {
    font-size: 19px;
}

.show-list a {
    color: black;
    text-decoration: none;
}

.show-list a:hover {
    text-decoration: underline;
}
