@font-face {
    font-family: Urbana;
    src: url(/fonts/Urbana.ttf);
}

@font-face {
    font-family: Impacted;
    src: url(/fonts/Impacted2.ttf);
}

@font-face {
    font-family: Roboto;
    src: url(/fonts/Roboto-VariableFont_wdth\,wght.ttf);
}

body {
    background-color: black;
    color: white;
    font-family: Roboto;
}

main,
footer {
    width: 800px;
    margin: auto;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: grey;
}

header {
    text-align: center;

    a:hover {
        text-decoration: none;
    }

    a:visited {
        color: white;
    }
}

footer {
    text-align: center;
    font-size: small;
    color: grey;

    a:visited {
        color: white;
    }
}

.Impacted {
    font-family: Impacted;
    font-size: 4em;
    letter-spacing: 2px;
}

.Urbana {
    font-family: Urbana;
    font-size: 3em;
}

#radio-bg {
    background-image: url(/images/radio_bg.jpg);
    background-position: center;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    width: 800px;
    height: 100px;
}

.border-none {
    border: none;
}

.bg-none {
    background: none;
}

.padding-0 {
    padding: 0;
}

.flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.align-baseline {
    align-items: baseline;
}

.gap-2 {
    gap: 2px;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.absolute {
    position: absolute;
}

.pointer {
    cursor: pointer;
}

.justify-center {
    justify-content: center;
}

.margin-10 {
    margin: 10px 0 10px 0;
}

.collapse {
    visibility: collapse;
    display: none;
}

.space-between {
    justify-content: space-between;
}