body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.aboutInfo {
  font-size: 18px;
  margin-top: 1em;
  line-height: 1.5;
}

a {
  color: black;
  text-decoration: none;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2em;
}

.leftImage,
.rightInfo {
  flex: 1;
  padding: 1em;
  text-align: center;
}

.aboutInfo {
  font-size: 18px;
  margin-top: 1em;
}

#header {
  font-size: 40px;
}

.strong {
  font-weight: 500;
}

button {
  font-size: 20px;
  color: white;
  background-color: #222121;
  padding: 0.4em 1.5em;
  border: none;
  border-radius: 5px;
  margin-top: 1.5em;
  cursor: pointer;
}

.icons {
  margin-top: 1.5em;
}

.icons i {
  margin-right: 30px;
}

#image {
  max-width: 100%;
  margin-top: 3em;
}

/* Media Queries */
/* Tablets and smaller devices */
@media only screen and (max-width: 1024px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
  
  .leftImage,
  .rightInfo {
    max-width: 100%;
    padding: 1em;
    text-align: center;
  }
  
  .aboutInfo {
    font-size: 16px;
    margin-top: 1em;
  }

  #header {
    font-size: 30px;
  }

  button {
    font-size: 16px;
  }

  .icons i {
    margin-right: 15px;
  }
}

/* Phones */
@media only screen and (max-width: 600px) {
  #header {
    font-size: 24px;
  }

  .rightInfo {
    font-size: 12px;
  }

  .aboutInfo {
    font-size: 14px;
  }

  button {
    font-size: 14px;
  }

  .icons i {
    margin-right: 10px;
  }
}
