
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #001f4d, #ff6600);
    color: white;
    margin: 0;
    padding: 0;
}

header {
    background: #ff6600;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

section {
    padding: 20px;
    margin: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

#liveTicker {
    font-size: 1.2em;
    color: #ff6600;
}

#timer {
    font-size: 2em;
    font-weight: bold;
    color: #ff6600;
}

footer {
    background: #001f4d;
    text-align: center;
    padding: 10px;
}
