html, body {
    height: 100%;
}
body {
    background: #000;
    font-family: 'Roboto', sans-serif;
}
table {
    table-layout: fixed;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    line-height: 1;
    font-weight: 400;
}
img {
    width: 5rem;
    text-align: center;
}
a {
    color: #f70;
}
a:hover {
    text-decoration: none;
    color: #f70;
}
body::after {
    content: "";
    background: url('./img/bg.jpg') 100% 50%;
    background-size: cover;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.color-white {
    color: #fff;
}
.review_icon {
    background: #fff;
    padding: .05rem;
    border: 4px solid rgba(255,119,0, .9);
    border-radius: 5px;
}
.review_link {
    color: #fff;
}

@media (max-width: 992px) {
    body:after {
        background: none;
    }
}
