@font-face {
    font-family: 'Inter';
    src: url('teenslive.org/fonts/Inter-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Monospace Neon';
    src: url('teenslive.org/fonts/MonaspaceNeon.otf') format('truetype');
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
}

header h1 {
    margin: 0;
    padding-right: 2rem;
    display: flex;
    align-items: center;
    font-family: 'Helvetica Neue', sans-serif;
}

.sub-title{
    background-color: #000;
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin-left: 0.5rem;
    border-radius: 0.2rem;
    font-size: 0.8rem;
    font-family: 'Monospace Neon', monospace;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #fff;
    padding: 1rem;
    text-decoration: none;
}

nav a:hover {
    background-color: #555;
}

main {
    padding: 2rem;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}