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

body {
  background-color: #111;
  overflow-x: hidden;
  max-width: 100%;
  background: rgb(17, 17, 17);
  background: linear-gradient(90deg, rgba(17, 17, 17, 1) 0%, rgba(51, 51, 51, 1) 50%, rgba(51, 51, 51, 1) 65%, rgba(17, 17, 17, 1) 100%);
}

.logo {
  background-image: url(AirbrushFXlogodark.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 550px;
  position: absolute;
}

header {
  width: 100%;
  height: 550px;
}

article {
  width: 100%;
  height: 200px;
  text-align: center;
}

article p {
  color: #fff;
  padding-bottom: 40px;
  font-size: 40px;
}

a.button {
  color: #000;
  text-decoration: none;
  background: #eee;
  padding: 20px;
  text-transform: uppercase;
  font-family: arial;
  font-size: 20px;
  font-weight: 550;
  transition: 0.1s;
}

a.button:hover {
  background-color: #ccc;
  transition: 0.1s;
}

span.aba {
  font-size: 10px;
}

footer {
  max-height: 100px;
  width: 100%;
  text-align: center;
  color: #eee;
}

footer p {
  margin-top: 50px;
}