body {
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin-top: 20px;
}
.center {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  border-bottom: 2px solid white;
  text-align: center;
}
.centerimg {
  margin: auto;
  display: block;
  transition: transform 0.2s;
}

.centerimg:hover {
  transform: scale(1.01);
}

h1 {
  font-size: 30px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  padding-bottom: 10px;
}
h1:hover {
  background-color: #fff;
  color: black;
  border-bottom: 2px solid black;
}
@keyframes slideup {
  0% {
    transform: translateY(-1000px);
  }
  100% {
    transform: translateY(0);
  }
}
#slideup {
  animation: slideup 1s ease;
}
@keyframes slidedown {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}
#slidedown1 {
  animation: slidedown 0.5s ease;
}
#slidedown2 {
  animation: slidedown 1s ease;
}
#slidedown3 {
  animation: slidedown 1.5s ease;
}
#slidedown4 {
  animation: slidedown 2s ease;
}
.grad {
  background-image: linear-gradient(#dad8d8, white);
}
.con {
  position: relative;
  width: 100%;
}
.image {
  display: block;
  width: 775px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #e9e9e9;
}
.con:hover .overlay {
  opacity: 1;
}
.text {
  color: black;
  font-size: 40px;
  font-family: Helvetica;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
html {
  scroll-behavior: smooth;
}
#buildingprocess {
  color: black;
}
#AboutUs {
  color: black;
}

a:link {
  color: black;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: black;
}

/* mouse over link */
a:hover {
  color: black;
}

/* selected link */
a:active {
  color: black;
}

@keyframes slideleft {
  0% {
    transform: translateX(1000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideleft {
  animation: slideleft 1.75s ease;
  margin-left: 300px;
  display: block;
  transition: transform 0.2s;
}
.slideleft:hover {
  transform: scale(1.25);
}
.centertext {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 50px;
}
#contact {
  color: black;
}
