:root {
    --text: red;
    
    --headingtext: var(--text);
    --subheadingtext: var(--text);

    --btntext: black;
    --btnbackground: red;
}

* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
}


h1 {
    color: var(--titletext);
    text-align: center;
    font-size: 42pt;
}

h2 {
    color: var(--subheadingtext);
    text-align: center;
    font-size: 28pt;
}

h3 {
    color: var(--subheadingtext);
    text-align: center;
    font-size: 20pt;
}

a {
    text-decoration: none;
}


.title {
    display: flex;
    justify-content: center;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.logo {
    max-width: 90vw;
    max-height: 200px;
}


.row {
    display: flex;
    flex-flow: wrap;
}

.column {
    text-align: center;
    flex: 1;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

.sidebyside {
    display: flex;
}


.buttons {
    display: grid;
    justify-items: center;
    margin: 0px;
}

.btn {
    color: var(--btntext);
    background-color: var(--btnbackground);
    
    text-align: center;
    font-size: 16pt;
    
    padding: .75em 1em;
    margin: 0em .2em;
    border: none;
    border-radius: 5px;
    
    opacity: 60%;
    pointer-events: all;
    cursor: default;

    transition: 0.3s;

    min-width: 6em;
}
/* .btn:hover {
    opacity: 85%;
    cursor: default;
} */

.btn:disabled {
    pointer-events: none;
    cursor: default;
}

.spacer {
    margin-bottom: 30px;
}

.active {
    opacity: 100%;
    pointer-events: all;
}
.active:hover {
    opacity: 85%;
    cursor: pointer;
}