* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
    background-color: whitesmoke;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100vw;
}

h1,
h2,
h3,
h4 {
    font-size: 1rem;
    font-weight: 400;
}

.schedule {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100vw;
}

.events {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.box,
#status {
    background-color: white;
    border: 1px dashed gray;
    padding: 1rem;
    width: 300px;
    height: 300px;
}

.event {
    background-color: white;
    border: 1px dashed gray;
    padding: 1rem;
    width: 300px;
    height: 300px;
    min-width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event p {
    line-height: 1.5rem;
}

.event:last-child {
    margin-bottom: 0;
}

.event-bottom {
    display: flex;
    justify-content: space-between;
}

.previous,
.upcoming {
    padding: 1rem;
    border: 1px dashed gray;
}

.upcoming {
    margin-bottom: 1rem;
}

.icons {
    display: flex;
    gap: 1rem;
    align-items: end;
    justify-content: end;
}

.icon {
    height: 1.5rem;
    width: 1.5rem;
    background-color: black;
    display: inline-block;
    text-align: center;
    border: 1px dashed gray;
}

.url {
    background-color: steelblue;
}

.irl {
    background-color: olive;
}

::selection {
    background-color: lightcoral;
}