html, body {
    background: #000;
    margin: 0;
    padding: 0;
}
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../home-background.webp?v=5) no-repeat center center;
    background-size: cover;
}
.backdrop {
    z-index: 0;
    background: #000;
    opacity: 100%;
    position: fixed;
    width: 100%;
    height: 100vh;
    transition: opacity 2s ease-out;
}
.steam-widget iframe {
    max-width:100%
}
@keyframes background-fade {
    from {
        opacity: 95%;
    }
    to {
        opacity: 80%;
    }
}
.backdrop[fade-to-hidden="1"] {
    animation: 3s infinite alternate ease-in-out background-fade;
}
.container {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 0 0;
}
h1 {
    margin: 0;
    font-family: limelight-regular, sans-serif;
    text-shadow: 0px 0px 22px #fff;
    color: #e3daaf;
    margin-bottom:20px;
}
a {
    color: #0889e7;
    padding: 10px;
    font-family: montserrat-regular, sans-serif;
    text-shadow: 0px 0px 4px #000;
}
.horizontal {
  display: flex;
  gap: 5px;
  margin-bottom:40px;
}

.horizontal a {
  font-weight: bold;
  background: #4c342b;
  color: #ffa039;
  text-shadow: none;
  padding: 10px 15px;
  display: flex;
  box-shadow: 3px 5px 5px #000000;
  text-decoration: none;
  border-radius: 2px;
}
.horizontal a:hover {
  background: #fff;
  color: #4c342b;
}