/******* CSS Reset *******/

@import url("https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300;400;500;600;700&display=swap");

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    /* padding: 0; */
    /* border: 0; */
    /* vertical-align: baseline; */
    line-height: 1.5;
    font-family: "Spline Sans", sans-serif;
}

/*************************/

:root {
    --c-white: #fff;
    --c-black: #000;
    --c-ash: #eaeef6;
    --c-void: #343b42;
    --c-light-gray: #e2e3e4;
    --c-mid-gray: #606360;
    --c-green: #63ba49;
    --c-light-green: #a6cc9b;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--c-ash);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, i {
    display: block;
    text-align: center;
}

.section {
    text-align: center;
    margin-bottom: 1em;
}

.shows-container {
    display: flex;
    flex-direction: column;
    gap: 0.7em;
    margin-bottom: 2em;
}

.show {
    border-radius: 8px;
    max-width: 30em;
    border: 1px solid var(--c-light-gray);
    box-shadow: 0 30px 30px -25px rgba(0.3, 0.3, 0.8, .25);
    background-color: var(--c-white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.show .header {
    color: var(--c-black);
    font-weight: 700;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 0.5em;
}

.show .contents {
    display: flex;
    flex-direction: column;
    padding: 0.5em;
}

.horizontally-centred-text-div {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 0.5em;
    align-items: center;
}

.show .contents b {
    color: var(--c-void);
}

.show .contents span {
    color: var(--c-void);
}

.show .contents .about {
    font-weight: 300;
    color: var(--c-mid-gray);
    text-align: justify;
}

.show .contents .tix-link {
    font-weight: 700;
    margin-top: 0.5em;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    padding: 0.5em;
    color: var(--c-white);
}

#upcoming-shows {
    margin-top: 2em;
}

#upcoming-shows .tix-link {
    background-color: var(--c-green);
}

#past-shows .tix-link {
    background-color: var(--c-light-gray);
}

.svg-link {
    text-decoration: none;
    display: inline-block;
    color: rgb(0, 0, 238);
}

.svg-link img {
    width: 1.2em;
    height: auto;
    border: 0;
}
