* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Chakra Petch', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: black;
    color: white;
}
a {
    color: white;
}
.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.section {
    width: 50%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.section.visible {
    opacity: 1;
    transform: translateY(0)
}
.centercontents {
    align-items: center;
}
h1 {
    font-size: 4em;
    margin-bottom: 20px;
}
h2 {
    font-weight: normal;
    margin-bottom: 20px;
}
.notice {
    background-color: rgb(138, 0, 0);
    font-size: 18px;
    color: rgb(255, 255, 255);
    padding: 12px 20px;
    text-decoration: none;
    border: 2px red solid;
    box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.4);
    margin-bottom: 20px;
}
li {
    margin-left: 20px;
    margin-bottom: 10px;
}
pre {
    font-family: "Lucida Console", "Courier New", monospace;
    border: 1px solid #323232;
    padding: 10px;
    color: #cccccc;
    overflow-x: scroll;
    margin-bottom: 20px;
}
