@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");


body {
  background-image:url("/ram-api-images/other/Ram_Wallpaper_Exact_1920x1080.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 50px;
  background-position-x: center;
  background-attachment: fixed !important;
  position: relative;
  color: #f5f5f5;
  background-color: #050505;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 8, 0.74);
  backdrop-filter: blur(8px);
  z-index: -1;
}

/* ensure page content has room for footer so it doesn't overlap */
/* Use a column flex layout so footer can naturally stick to the bottom when
   page content is short. This is a safer alternative to a fixed padding-bottom. */
html, body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Let the primary container grow to take remaining space so footer is pushed down. */
body > .container {
  flex: 1 0 auto;
}