html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

noscript {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999999999;
  width: 100%;
  height: 98vh;
  background-color: lightcoral;
  color: crimson;
}

header {
  display: flex;
  align-items: center;
  justify-content: stretch;
  padding: 0 32px;
  border-bottom: 1px solid black;
  background-color: white;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
header nav a {
  padding: 5px 7px;
  border-radius: 10px;
  background-color: lightgrey;
  text-decoration: none;
  color: black;
}
header nav a:hover {
  background-color: darkgrey;
}
header nav .current {
  background-color: darkgrey;
}
header nav .current:hover {
  background-color: dimgrey;
}
header h1 {
  text-wrap: nowrap;
}

main {
  padding: 0 32px;
}

#intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 90vh;
}
#intro #intro-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  flex-shrink: 1;
}
#intro #intro-name h1 {
  margin: 0;
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 2px;
}
#intro #intro-name h1 span {
  font-weight: 700;
}
#intro #intro-name h4 {
  margin: 0;
}
#intro img {
  height: 80px;
}

.cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 16px;
  padding: 16px;
  height: 78px;
  box-shadow: 0 0 20px darkgrey;
}
.card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.card > div img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.card > div h3 {
  margin: 0;
}
.card p {
  color: dimgrey;
  margin: 0;
}

.copy-line {
  display: flex;
  flex-direction: row;
}
.copy-line div {
  display: flex;
  flex-direction: row;
  background-color: grey;
  border-radius: 16px;
}
.copy-line div h2 {
  font-family: monospace;
}
.copy-line div button {
  background-color: transparent;
  border: none;
}

@media (min-width: 1024px) {
  main, footer {
    padding: 0 100px;
  }
}
@media (min-width: 1250px) {
  main, footer {
    padding: 0 200px;
  }
}
@media (min-width: 1500px) {
  main, footer {
    padding: 0 250px;
  }
}
@media (max-width: 1080px) {
  #intro {
    height: 80vh;
  }
  #intro #intro-name h1 {
    font-size: 60px;
    white-space: nowrap;
  }
  #phone-number {
    font-size: 16px;
    white-space: nowrap;
  }
  #footer-topbar {
    justify-content: center;
  }
}
.contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 12px;
  margin: 10px 0;
  width: fit-content;
  padding: 3px 20px;
  background-color: lightgrey;
  border-radius: 16px;
  height: auto;
}
.contact-info p {
  margin: 0;
}
.contact-info button {
  height: 42px;
  background-color: transparent;
  border: none;
  padding: 5px;
  border-radius: 10px;
}
.contact-info button:hover {
  background-color: darkgrey;
}
.contact-info button p {
  margin: 0;
}

footer {
  background-color: black;
  color: white;
  overflow: hidden;
  padding-bottom: 20px;
}
footer #footer-topbar {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  width: 100%;
  margin: 0;
}
footer #footer-topbar #socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 6px;
  height: 48px;
}
footer #footer-topbar #socials a {
  text-decoration: none;
}
footer #footer-topbar #socials a img {
  filter: brightness(0) invert(1);
  height: 32px;
  width: 32px;
  object-fit: contain;
}
footer #copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 6px;
  width: 100%;
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
