* {
  margin: 0;
  padding: 0;
  outline: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #181818;
}

#container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#box {
  width: 60%;
  max-width: 800px;
  padding: 50px;
  background-color: #272727;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.5em;
  letter-spacing: 1px;
  font-family: Century Gothic, sans-serif;
  text-align: center;
  box-shadow: 0 0px 400px 0 rgb(0, 134, 255);
}

#box img, .column {
  margin-bottom: 10px;
}

.text-right {
  font-weight: bold;
}

@media (min-width: 880px) {
  #box {
    font-size: 2em;
  }

  .column {
    float: left;
    width: 50%;
  }

  .row:after {
    content: "";
    clear: both;
  }

  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
}
