body {
    font-family: 'Helvetica', sans-serif;
    background-color: black;
    color: white;

}

header {
    text-align: center;
}

header h1 {
    font-size: 3em;
    letter-spacing: 0.2em;
    margin-bottom: 10pt;
    font-weight: 200;
}

header p {
    font-size: 0.7em;
    letter-spacing: 0.6em;
    font-weight: 500;
    color: silver;
}

header a {
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 3%;
    font-size: 1.1em;
    letter-spacing: 0.2em;
    font-weight: 200;
}

main {
    padding: 30px;
    /* margin: 10px auto; */
}

main p,
li {
    /* margin: 0 0 30px; */
    font-size: 1em;
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

main h1 {
    margin: 0 0 30px;
    font-size: 2.4em;
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.columns {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.col {
    margin: 0 30px;
    flex: 1;
    text-align: inherit;
}

.col:first-child {
    text-align: right;
}

.col:last-child {
    text-align: left;
}

@media (max-width: 800px) {
    .columns {
        flex-direction: column;
    }

    .col:first-child {
        order: 2;
        /* Explicitly moves the first div to the top */
    }

    .col:last-child {
        order: 1;
        /* Ensures the second div is below the first */
    }

    .logo-container {
        text-align: center;
    }
    .logo-container img {
        display: block;  /* Ensures the image behaves like a block element */
        margin-left: auto;  /* Centers the image horizontally */
        margin-right: auto;
    }
}

img {
    max-width: 100%;
    max-height: 70svh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.center-image {
    display: flex;
    justify-content: center;
}

a {
    color: white;
}

a.current-link {
    color: limegreen
}

.bedside-radio {
    color: paleturquoise
}

li+li {
    margin-top: 10px;
}

/* Default alignment for wide screens (left align) */
.logo-container {
    text-align: left;
}
