body {
    background-color: #000;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
    margin-bottom: 16px;
}

a {
    color: #fff;
    text-align: center;
    word-wrap: normal;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

hr {
    width: 640px;
    max-width: 100vw;
    margin-top: 2px;
    border: 1px solid #333;
}

canvas {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

iframe {
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: calc(100% - 64px);
    max-width: 960px;
    transition: opacity 0.25s;
}

.logoDiv {
    margin-top: 16px;
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    height: 128px;
    margin-bottom: 12px;
}

.projContainer {
    margin-top: 8px;
    width: auto;
    min-height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.fade {
    opacity: 0;
}

.slogan {
    font-size: 26px;
    font-weight: bold;
}

.slogan2 {
    font-size: 20px;
    color: #555;
}

.section {
    margin-top: 32px;
    font-size: 26px;
    font-weight: bold;
}

.end {
    color: rgba(255,255,255,0.333);
    font-size: 16px;
}

.button {
    background-color: rgba(255,255,255,0.1);
    width: 32px;
    height: 128px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.1s, transform 0.1s;
}

.button:hover {
    background-color: rgba(255,255,255,0.25);
    cursor: pointer;
}

.button:active {
    background-color: rgba(215,255,215,0.25);
    transform: scale(0.85, 0.85);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.arrow {
    width: 80%;
    height: 90%;
    object-fit: contain;
    user-select: none;
	-webkit-user-drag: none;
}

.flip {
    transform: scaleX(-1);
}

.highlight {
    color: #ffc;
}

.wt {
    color: #fff;
}

.mb {
    margin-bottom: 8px;
}

.mb2 {
    margin-bottom: 16px;
}