* {
    margin: 0;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: white;
}

.LOGXENO {
    color: white;
}

.header {
    background-color: rebeccapurple;
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-content img {
    height: 50px;
    width: auto;
    display: block;
}


h1 {
    padding: 0px 10px;
    color: rebeccapurple;
    letter-spacing: 2px;
}

h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.lst ul {
    list-style: decimal;
}

.lst-summary {
    cursor: pointer;
    font-size: 20px;
    padding: 15px;
    background: whitesmoke;
    color: black;
    user-select: none;
}

.footer-clock {
    text-align: center;
    padding: 20px 0 10px 0;
    margin-top: 30px;
    border-top: 2px solid rgba(102, 51, 153, 0.15);
}

#utc-clock {
    color: cadetblue;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
}

.footer-clock h5 {
    color: #666;
    margin-top: 5px;
    font-weight: 400;
    letter-spacing: 1px;
}

a {
    color: rgb(95, 95, 240);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff6b6b;
    text-decoration: none;
}

ul li h3 a {
    color: rgb(95, 95, 240);
    text-decoration: none;
}

ul li h3 a:hover {
    color: #ff6b6b;
    text-decoration: none;
}

.solve {
    color: rgb(97, 164, 112);
}

.regions {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 30px;
}

.regions:hover {
    color: #ff6b6b;
    text-decoration: none;
}

code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    border: 1px solid #e1e4e6;
}