* {
    box-sizing: border-box;
}

.material-symbols-outlined {
    font-variation-settings:
            'FILL' 1,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24
}

body {
    height: fit-content;
    background:
        radial-gradient(ellipse at bottom left,hsla(258.8, 77%, 47.8%,20%), transparent 50%),
        radial-gradient(ellipse at bottom right,hsla(328.9, 61.1%, 35.3%,20%), transparent 75%),
            rgb(9, 5, 39);
    background-attachment: fixed;
}
.main {
    width: 1000px;
    max-width: 100%;
    min-height: 100vh;
}
.stations {
    margin: 24px 0;
}
.station-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: start;
}
.station {
    width: 240px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.station-thumbnail {
    width: 232px;
    height: 200px;
    position: relative;
}
.station-icon {
    width: 200px;
    height: 200px;
    position: absolute;
    right: 0;
}
.station-case {
    width: 232px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
}
.station-details {
    width: 100%;
    height: auto;
    margin: 3px 6px 6px;
}
.station-name,
.station-desc {
    margin: 0;
    text-align: left;
}