/*
Custom css styling for different elements
*/

.header {
    height: 400px;
}

.text-shadow {
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.35);
}

.align-content {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-img,
.header-text {
    margin: 0;
    padding: 0;
}

.header-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.game-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.img-text-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 94.9%;
    transition: .5s ease;
    background-color: #ff9900e0!important;
    opacity: 0;
}

.media-content:hover .img-text-overlay,
.media-content2:hover .img-text-overlay,
.header-img:hover .img-text-overlay {
    opacity: 1;
}

.other-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.out-margins {
    position: absolute;
    top: 0;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 1200px;
}

.in-margins {
    margin-left: 20px;
    margin-right: 20px;
}

.media-content {
    height: 200px;
}

.media-content2 {
    object-fit: cover;
    width: 100%;
}