body {
    font-family: "Geist", sans-serif;
    font-size: 20px;
    margin: 0;
}

.outer-container {
    width: 300px;
    margin: 0 auto;
}

h1 {
    font-family: "Geist Mono", monospace;
    text-align: center;
    font-size: 64px;
    line-height: 0.9;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 1s;
    animation-delay: 0.25s;
    animation-fill-mode: forwards;
}

.button-container {
    text-align: center;
    margin-bottom: 48px;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

button {
    font-family: "Geist Mono", monospace;
    border: none;
    background-color: #FC5C00;
    color: white;
    padding: 4px 8px;
    font-size: 20px;
}

button:hover {
    opacity: 0.75;
}

@keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes wobble {
    0% {transform: rotate(0);}
    25% {transform: rotate(-3deg);}
    50% {transform: rotate(0);}
    75% {transform: rotate(3deg);}
    100% {transform: rotate(0);}
}

@keyframes rotate {
    0% {transform: rotate(0);}
    100% {transform: rotate(360deg);}
}

@keyframes rotate-triangle {
    0% {transform: rotate(320deg);}
    100% {transform: rotate(-40deg);}
}

.illustration {
    width: 300px;
    position: relative;
}

.illustration-container {
    width: 300px;
    margin: 0 auto;
    position: relative;
    animation-name: fadein;
    animation-duration: 1s;
}

.illustration-square {
    background-color: #FFEBDC;
    width: 90px;
    height: 90px;
    position: absolute;
    top: 200px;
    left: -60px;
    animation-name: rotate;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.illustration-circle {
    background-color: #FFC6A0;
    width: 90px;
    height: 90px;
    border-radius: 45px;
    position: absolute;
    top: 40px;
    right: -30px;
}

.illustration-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 59.5px 103px 59.5px;
    border-color: transparent transparent #CDEFDB transparent;
    position: absolute;
    right: 20px;
    bottom: -60px;
    animation-name: rotate-triangle;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#container {
    margin-bottom: 32px;
}

#loadingText {
    font-family: "Geist Mono", monospace;
    text-align: center;
}

.itemContainer {
    background-color: #CDEFDB;
    border-top: 4px solid #00BA59;
    padding: 16px;
    margin-bottom: 16px;
}

.schoolName {
    font-size: 30px;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 4px;
}

.schoolTransition {
    margin-top: 4px;
    margin-bottom: 8px;
}

.dateString {
    font-weight: bold;
    margin-bottom: 0;
}

#footer {
    margin-top: 144px;
    padding-top: 16px;
    border-top: 1px dotted #000;
    padding-bottom: 16px;
    font-family: "Geist Mono", monospace;
    font-size: 12px;
}

#header {
    background-color: #000;
    color: white;
    padding: 8px;
    font-size: 16px;
    text-align: center;
    font-family: "Geist Mono", monospace;
    width: 100%;
}