h2 {
  font-size: large;
  font-weight: bold;
}

main {
  background-color: #ccffff;
  padding-left: 16px;
  padding-right: 16px;
}

footer {
  gap: 8px;
}

footer .contact {
  background-color: #fff84f;
}

address {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 4px;
  font-size: small;
  font-weight: bold;
}

.notice{
  display: flex;
  gap: 8px;
  color: blue;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 12px;
}

.section .flex-row {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 8px;
}

@media screen and (max-width: 700px) {
  .section .flex-row {
    flex-direction: column;
    align-items: center;
  }

  .section img {
    width: 100%;
  }
}