@font-face {
    font-family: 'ComicRelief';
    src: url('fonts/comicrelief.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/lora.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #0d3072;
    margin: 0;
    font-family: 'ComicRelief', cursive;
    color: #ffffff;
}

.top-bar {
    width: 100%;
    height: 50px;
    background: #011842;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-family: 'ComicRelief', cursive;
}

.clock {
    font-size: 2vw;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'ComicRelief', cursive;
}

.separator {
    width: 100%;
    height: 5px;
    background-color: #04193f;
    margin: 20px 0;
}

.intro-segment {
    margin-top: 100px;
    padding-left: 40px;
    padding-right: 20px;
    text-align: left;
    color: #f0f0f0;
}

.intro-segment h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.intro-segment p {
    font-size: 1.2rem;
}

.games {
    display: flex;
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    color: #ffffff;
    align-items: stretch;
    gap: 30px;
}

a h1 {
    color: #ffffff;
    text-decoration: none;
}

a h1:hover {
    text-decoration: underline;
}

.games-left {
    flex: 1;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.games-right {
    flex: 2;
}

.games-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games-right p {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.games-right p::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.games-left h1 {
    font-size: 36px;
    margin: 0;
}

.vertical-separator {
    width: 2px;
    background-color: #ffffff;
}

.footer {
    width: 100%;
    background: #011842;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-family: arial, sans-serif;
    font-size: 16px;
}