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

body {
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(#4658B1, #31418F);
  position: relative;
}

.landing-section {
  text-align: center;
  position: relative;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.construction-logo {
  width: 320px;
  position: relative;
  margin: 0px auto;
}

h1 {
  font-family: 'Helvetica';
  color: #FFF;
  font-size: 1.75em;
}

p {
  font-family: 'Helvetica';
  color: #FFF;
  font-size: 1em;
}
.icon-align {
  position: relative;
  height: 30px;
  width: 200px;
  margin: 20px auto;
  display: flex;
  justify-content: space-evenly;
}
.social-icon {
  width: 30px;
  height: 30px;
}

@media screen and (min-width: 48em) {
  .construction-logo {
    width: 600px;
  }
}
