body {
  font-family: "Roboto", sans-serif;
}

header {
  background: #4b0d91;
  background: linear-gradient(
    270deg,
    rgba(75, 13, 145, 1) 0%,
    rgba(25, 0, 51, 1) 80%,
    rgba(0, 0, 0, 1) 100%
  );
  position: relative;
  display: flex;
  align-items: end;
  margin-bottom: 2rem;
}

header img {
  width: 75px;
  height: auto;

  @media screen and (min-width: 767px) {
    width: 150px;
    height: auto;
  }
}

.bubble {
  background: #fff;
  position: relative;
  margin: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 0.8rem;

  @media screen and (min-width: 767px) {
    margin: 2rem;
    border-radius: 1rem;
    padding: 2rem;
    font-size: 1rem;
  }
}
.bubble:after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  top: 50%;
  left: -1rem;
  clip-path: polygon(0 50%, 100% 90%, 100% 10%);
}
.bubble h1 {
  margin: 0;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  @media screen and (min-width: 767px) {
    font-size: 2rem;
  }
}

.contactIcons {
  display: flex;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;

  gap: 1rem;
  @media screen and (min-width: 767px) {
    gap: 2rem;
  }
}

section {
  border-radius: 0.5rem;
  border: solid 1px #ccc;
  box-shadow: #eee 0px 5px 2rem 0px;
  margin: 1rem auto 2rem;

  width: calc(100% - 2rem);
  @media screen and (min-width: 767px) {
    width: 50%;
  }
}

section h2 {
  margin: 0;
  padding: 0.75rem 1rem;
  background: #f9f9f9;
  border-radius: 0.5rem 0.5rem 0 0;
}

.sectionContent {
  padding: 1rem;
}
footer {
  font-size: 0.75rem;
  text-align: center;
  color: #999;
}
