/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  font-family: 'Jost', sans-serif;
  background-color: #fff;
  color: #333;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.wrapper {
  grid-template-rows: auto 88px 88px auto;
  display: grid;
  min-width: 100vw;
  min-height: 100vh;
  justify-items: center;
  align-items: center;
}

.heading {
  display: flex;
  column-gap: 6px;
  grid-row: 2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 2rem;
  span {
    font-size: 2.5rem;
  }
}
.dots {
  position: relative;
}
.dot-over,
.dot-under {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: black;
}
.dot-over {
  top: 6px;
}
.dot-under {
  bottom: 2px;
}

.contact {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  grid-row: 3;
}
.contact a {
  text-decoration: underline;
}
.mail,
.address-mobile,
.address-desktop {
  display: flex;
  column-gap: 8px;
  vertical-align: middle;
}

.address-desktop {
  display: none;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

@media screen and (min-width: 767px) {
  .wrapper {
    grid-template-rows: auto 150px 150px auto;
  }
  h1 {
    font-size: 10rem;
    line-height: 5rem;

    span {
      font-size: 8rem;
    }
  }
  .dots {
    width: 32px;
  }

  .dot-over,
  .dot-under {
    width: 32px;
    height: 32px;
  }

  .contact {
    flex-direction: row;
    column-gap: 32px;
  }

  .address-mobile {
    display: none;
  }
  .address-desktop {
    display: flex;
  }
  .contact a {
    text-decoration: none;
  }
  .contact a:hover {
    text-decoration: underline;
  }
}
