body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: "Century Gothic", AppleGothic, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header, main, footer {
    max-width: 600px;
    margin: auto;
    padding: 1rem;
}

header {
    text-align: center;
    padding-top: 2rem;
}

footer {
    font-size: .5em;
    text-align: center;
}

img.logo {
    max-width: 150px;
    display: block;
    margin: 1rem auto;
}

img.photo {
    max-width: 300px;
    display: block;
    margin: 0 auto 1rem;
    border: solid white 4px;
}

h1, h2 {
    color: white;
}

h1 {
    font-size: 1em;
    font-weight: normal;
    letter-spacing: .5rem;
}

h2 {
    font-size: .8em;
    letter-spacing: .5rem;
}

a {
    color: #90caf9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1.1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-icons img {
    width: 60px;
    height: 60px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #9e9e9e;
    font-family: inherit;
    font-size: .8em;
    letter-spacing: .3rem;
    padding: .6rem .4rem;
    margin-bottom: -1px;
    cursor: pointer;
}

.tab:hover {
    color: #e0e0e0;
}

.tab.active {
    color: white;
    border-bottom-color: #90caf9;
}

.tab-panel {
    margin-top: 1.5rem;
}

.tab-panel.hidden {
    display: none;
}

/* Schedule section */
.schedule-section {
    text-align: center;
}

.schedule-section a {
    display: inline-block;
    margin-top: 1rem;
}

/* Articles section */
#articles-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9em;
}

#articles-table thead th {
    text-align: left;
    padding: 0.5rem;
    border-bottom: 1px solid #444;
    color: white;
}

#articles-table tbody td {
    padding: 0.5rem;
    border-bottom: 1px solid #2a2a2a;
}

#articles-table tbody td a {
    color: #90caf9;
}
