body {
  height: 100%;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: 3.5em;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 1.125em;
  font-family: 'Heebo', sans-serif;
  font-weight: 300;
  color: #fff;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
}

.name-title {
  background: rgb(89, 128, 166);
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  height: 100%;
}

.name-title .inner {
  padding: 11em 10em;
  display: flex;
  align-items: center;
}

.info-icons .inner {
  padding: 10em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name-title .inner {
  width: 100%;
}

.info-icons {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.info-icons a {
  font-size: 6em;
  color: #ddd;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  text-decoration: none;
}

.info-icons a:hover {
  color: rgb(89, 128, 166);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
}

.icon {
  width: 60px;
  height: 60px;
}

.svg-icon {
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.625em;
  }

  h2 {
    font-size: 1em;
  }

  .container {
    flex-direction: column;
    height: auto;
  }

  .name-title .inner,
  .info-icons .inner {
    padding: 4em;
  }

  .info-icons a {
    font-size: 4em;
  }
}
