body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background: url("JDS_back.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: black;
  color: white;
  padding: 0 2rem;
  font-family: "SFProDisplay", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}
h1 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: 0.0475em;
  margin: 3rem 0;
}

p {
  font-size: 1rem;
}

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

.nowrap {
  white-space: nowrap;
}

.jadato_contact_container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 2rem;
  margin-top: 3rem;
}

.jadato_contact_container img {
  width: 3rem;
}

@media only screen and (max-width: 768px) {
  body {
    height: auto;
    padding: 2rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  .jadato_contact_container {
    grid-template-columns: auto;
    margin-top: 0;
    width: 100%;
  }

  .jadato_contact_container div {
    display: flex;
    text-align: left;
    align-items: center;
  }

  .jadato_contact_container p {
    margin: 0;
  }

  .jadato_contact_container img {
    margin-right: 1rem;
  }

  .notvisible {
    display: none;
  }
}