html {
    height: 100%;
}

body {
    background-color: #120d1a;
    font-family: 'Barlow', sans-serif;
    color: #fff;
    line-height: 1.25;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
}

a {
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

.main-img {
    width: 100%;
    /* aspect-ratio: 2.414 / 1; */ /* Silver ratio */
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.streaming-links a {
    display: block;
    width: 3rem;
    height: 3rem;
    margin: 0 .5rem 2rem .5rem;
}

.img-link img {
    width: 160px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: .5rem;
}

.video-thumbnail {
    position: relative;
    display: block;
}

.video-thumbnail::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
}

.video-thumbnail-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.s48 {
    width: 48px;
    height: 48px;
}

.s96 {
    width: 96px;
    height: 96px;
}

.container-fluid {
    max-width: 768px;
}

#logo {
    width: 100%;
    max-width: 320px;
    height: auto;
}

@media (min-width: 480px) {
    .main-img {
        aspect-ratio: 16 / 9;
    }
}

@media (min-width: 768px) {
    .main-img {
        aspect-ratio: 2.414 / 1; /* Silver ratio */
    }
}

@media (min-width: 1024px) {
    .main-img {
        aspect-ratio: 3 / 1;
    }
}