@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body {
  background-color: #000;
  overflow: hidden;
}

p,
.maintext,
.subtext {
  color: #fff;
  font-family: 'Roboto Mono', monospace;
}

.bg-image {
  background-image: url('../img/background.gif');
  background-repeat: repeat;
  background-size: cover;
  background-position: center center;

  filter: blur(0px);
  -webkit-filter: blur(0px);

  transform: scale(1.1);
}

.box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);

  backdrop-filter: blur(10px);

  width: 90%;

  height: 35%;
  max-width: 580px;

  border-radius: 5px;
}

.header {
  position: absolute;
  top: 15%;

  text-align: center;
  width: 100%;

  padding: 0%;
  margin: 0%;
}

.maintext {
  font-size: 2.5rem;
  padding: 0%;
  margin: 0%;
  padding-bottom: 5px;
}

.subtext {
  font-size: 1rem;
  font-style: italic;
}

#subtext {
  display: inline;
}

.footer {
  position: absolute;
  bottom: 15%;

  width: 100%;

  /* center all images inside */
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-logo {
  padding-left: 20px;
  padding-right: 20px;

  transition: transform 0.2s;

  width: 40px;
  height: 40px;
}

.social-logo:hover {
  transform: scale(1.5);
}
