body {
    margin: 0;
    font-family: 'VT323', monospace;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.875rem;
    padding: 20px;
    background-color: black;
    color: lightslategray;
    word-break: break-word;
}

.App {
    overflow-x: hidden;
}

.mainLogo {
    width: 250px;
    height: auto;
}

.actionButtonPrimary,
.actionButtonSecondary {
    display: inline-block;
    padding: 1ch 2ch;
    margin: 1ch;
    border: 2px dashed magenta;
    background-color: transparent;
    color: magenta;
    font-size: 1.5rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.actionButtonPrimary:hover {
    border: 2px solid magenta;
    color: lime;
}

.actionButtonSecondary {
    border: 2px dashed lime;
    color: lime;
}

.actionButtonSecondary:hover {
    border: 2px solid lime;
}

.attentionText {
    display: inline-block;
    color: ghostwhite;
    margin-bottom: 2ch;
    width: 100%;
    max-width: 800px;
}

a {
    color: ghostwhite;
}

a:hover {
    color: magenta;
}

.accentColourGreenSymbol {
    color: lime;
}

.accentColourMagentaSymbol {
    color: magenta;
}

.boxedText {
    width: 100%;
    max-width: 800px;
}

.wrapped-text {
    padding: 0 1ch;
}

.separator-h {
    color: ghostwhite;
}

#pineapples {
    cursor: pointer;
}

.speakerPhoto {
    min-width: 200px;
    min-height: 200px;
    height: 200px;
    width: 200px;
    object-position: top;
    box-shadow: 3px 3px 0 lime;
    border: 1px solid lime;
    object-fit: cover;
}

.speaker {
    padding: 2ch;
}

.speakerText {
    margin-top: .5ch;
}

.speakerName {
    color: lime;
}

@media(min-width: 768px) {
    .speakerText {
        margin-left: 2ch;
        margin-top: -6px;
    }

    .speaker {
        display: flex;
    }
}

.logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2ch;
    align-items: center;
    margin-bottom: 2ch;
    justify-items: center;
}

.logo {
    width: 80%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

.logoLong {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    column-span: all;
}

.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.speakerBox {
    transition: max-height 0.75s ease, opacity 0.75s;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: 3px 3px 0 lime;
    border: 1px solid lime;
}

.speakerBox.active {
    opacity: 1;
    max-height: 3600px;
    margin-bottom: 2ch;
}
