@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700);
html,
body {
  height: 100%;
  width: 100%;
  background: #FFEA00;
}

.description {
  font-weight: 700;
  text-transform: uppercase;
  font-family: Quicksand;
}

.contact {
  font-weight: 700;
  font-family: Quicksand;
}

.content {
  width: 100%;
  height: 100%;
  float: left;
  background: #FFEA00;
  box-sizing: border-box;
  padding: 20px;
  -webkit-transform-origin: "center center";
  -moz-transform-origin: "center center";
  -ms-transform-origin: "center center";
  -o-transform-origin: "center center";
  transform-origin: "center center";
}

.services {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #191747;
  margin: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Quicksand;
  padding: 30px;
  color: #ffffff;
}

hr { 
  display: block; height: 1px;
  border: 0;
  border-top: 1px solid #191747;
  margin: 2px 0;
  padding: 0; 
}

.grid-services {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* For Desktop View */
@media screen and (min-width: 1024px) {
  .grid-services {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
 
/* For Tablet View */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .grid-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
 
/* For Mobile Portrait View */
@media screen and (max-device-width: 480px) and (orientation: portrait) {
  .grid-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
 
/* For Mobile Landscape View */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
  .grid-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}