* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background-color: #003bad;
  color: #ffbd59;
  line-height: 1.5rem;
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  display: inline-block;
  font-size: 3rem;
  text-align: center;
  padding: 20px;
  @media screen and (max-width: 768px) {
    font-size: 2.5rem;
    line-height: normal;
  }
}
.name {
  font-size: 2rem;
  text-align: center;
  padding: 10px;
}
.contactInformation {
  font-size: 1rem;
  text-align: center;
  padding: 2rem 0 1rem 0;
}
.contactHeader {
  font-size: 1.5rem;
  text-align: center;
  padding: 10px 0;
}
.address {
  padding: 10px;
}
.contactDetails {
  padding: 15px;
}
