body{
    font-family: sans-serif;
    height: 100vh;
    text-align: center;
    margin: 0;
    padding-top: 90px;
}

ul{
    line-height: 1.5rem;
}

.container{
    display:flex;
    align-items:center;
    justify-content:center;
    height: 100%;
}

h1{
    font-size: 2.5em;
    padding: 0px;
    margin: 0px;
}

h3{
    font-size: 2em;
    margin: 0;
    padding: 10px 0px;
}

p{
    line-height: 1.5em;
    font-size: 1.5em;
}

.nav{
    background-color: #1E447E;
    padding: 20px 0px;
    display:flex;
    /* margin-bottom: 25px; */
    position: fixed;    /* Keeps it at the top */
    width: 100%;        /* Spans the full width */
    align-items: center;
    top: 0;
    left: 0;
}

.nav a{
    margin: 0px 20px;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.nav a:hover{
    color: rgb(216, 212, 212);
}

.game-container{
    width: 100%;
    height: 100vh;
    background-color: #202224;
}

.game_name{
    color: white;
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    margin-bottom: 30px;
}

.section {
    margin-bottom: 25px;
}

.section h3 {
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 8px;
    color: #333;
    border-bottom: 2px solid #1E447E;
    display: inline-block;
}

.item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.item-link {
    background-color: #1E447E;
    color: white;
    padding: 8px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95em;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.item-link:hover {
    background-color: #1E447E;
}

.coming-soon {
    color: #999;
    font-style: italic;
    font-size: 0.95em;
}

