body {
    background-color: #121212;
    color: #e0e0e0;
    padding-top: 60px;
    /*temporary*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

.header-section {
    text-align: center;
    margin-bottom: 50px;
}

.header-section h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.header-section p {
    font-size: 1.2rem;
    color: #bbb;
}

.trailer-section {
    text-align: center;
    margin-bottom: 50px;
}

.font-section {
    text-align: center;
    margin-bottom: 50px;
}

.font-section p {
    font-size: 1.2rem;
    color: #bbb;
}

.about-section {
    text-align: center;
    margin-bottom: 50px;
}

.about-section p {
    font-size: 1.2rem;
    color: #bbb;
}

.link-section {
    flex-direction: row;
    margin-bottom: 10px;
    justify-content: center;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    color: #aaa;
    position: relative;
    width: 100vw;
    /*temporary*/
    margin-top: auto;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    color: #aaa;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
}

.link-navbar:hover {
    color: #ccc;
}

.text-link {
    position: relative;
    color: #00bfff;
    text-decoration: none;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #00bfff;
    transition: width 0.3s;
}

.text-link:hover::after {
    width: 100%;
}

.icon-link {
    color: #e0e0e0;
    font-size: 2.0rem;
}

.icon-link:hover {
    color: #fff;
}

.link-section a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.speedrun-btn {
    transition: transform .2s;
}

.speedrun-btn:hover {
    transform: scale(1.05);
}

.news-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    /* adjust speed */
}

.news-collapse.show {
    max-height: 1000px;
    /* comfortably larger than content */
}

#news-arrow {
    display: inline-block;
    /* needed for rotation */
    transition: transform 0.5s ease;
    vertical-align: middle;
    /* align with text */
}

#news-toggle.active #news-arrow {
    transform: rotate(180deg);
}

#news h3 {
    text-align: center;
    /* center the heading */
}

#news-content {
    text-align: center;
    /* center the content inside */
}

#news-content ul {
    list-style-position: inside;
    /* bullets stay with text */
    padding-left: 0;
    /* remove default padding */
    display: inline-block;
    /* make the list shrink to content */
    text-align: left;
    /* keep bullets left-aligned inside the block */
    color: #bbb;
    font-size: 1.2rem;
}