*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('grain.gif') repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 999;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-logo {
  width: 600px;
  max-width: 90vw;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px 10px 28px;
  font-size: 0.75rem;
  color: #ffffff;
  font-family: Arial, sans-serif;
}
