body {
	background-color: #16222f;
	color: #f0f0f0;
}

a {
	color: #f0f0f0;
}

.aspect-ratio-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden; /* Hides anything outside the box */
}

.aspect-ratio-img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    object-fit: cover;
    border: 1px solid #060610;
}