@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

* {
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #000;
  background-image: url('../imgs/bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

a, a:link, a:active, a:visited, a:hover {
  color: inherit;
  text-decoration: none;
}

#wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

#wrap .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/bg.jpg');
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}

#wrap .top {
  position: absolute;
  font-size: 32px;
  font-weight: 500;
  top: 16px;
  left: 16px;
}

#wrap .mid {
  position: absolute;
  font-size: 32px;
  z-index: 10;
  padding: 12px;
  min-width: 300px;
  text-align: center;
  top: 50%;
  left: 50%;
	border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%);
}

#wrap .bottom {
  font-size: 14px;
  position: absolute;
  bottom: 16px;
  left: 16px;
}
