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

html, body {
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #111;
  overflow: hidden;
}

/* Background image */

.wrapper {
  height: 100vh;
  width: 100%;
  background: url("assets/prefinaltower.png") center center / cover no-repeat;
  position: relative;
}

/* Dark overlay for mood */

.wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* Frame */

.frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 80%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.6);
  color: white;
  z-index: 2;
  letter-spacing: 1px;
}

/* Corner placements */

.top-left,
.top-center,
.top-right,
.bottom-left,
.bottom-right {
  position: absolute;
  font-weight: 300;
}

.top-left {
  top: 20px;
  left: 30px;
}

.top-center {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.big-number {
  font-size: 22px;
  display: block;
}

.small-sub {
  font-size: 9px;
  opacity: 0.6;
}

.top-right {
  top: 20px;
  right: 30px;
}

.bottom-left {
  bottom: 20px;
  left: 30px;
}

.bottom-right {
  bottom: 20px;
  right: 30px;
  font-size: 14px;
  opacity: 0.8;
}