@charset "UTF-8";

#body {
  width: 100%;
  height: calc(100vh - 40px);
  background-size: 100%;
  position: relative;
  margin-top: 40px;
}
#body .body-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#body h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  font-family: "Philosopher", sans-serif;
  color: #333;
}

#body .button-start {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 11px 36px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #333;
  background: #fff;
  color: #333;
  text-decoration: none;
}

#body .button-start:hover {
  background: #333;
  color: #fff;
}

#body .button a {
  color: #555;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;
}
#body .button a {
    margin: 4px 8px;
  }
}

#body .button a:hover {
  color: #333;
}