:root {
  --neutrals-white: #f5f5f5;
  --neutrals-black: #1a1a1a;
  --neutrals-grey: #E7E6E6;
  --neutrals-dark-grey: #3d3d3d;
  --active-nav-link: #bf6d1b;
  --font-family: "Work Sans", sans-serif;
  --gap-xs: 0.4rem;
  --gap-s: 1rem;
  --gap-m: 1.5rem;
  --gap-l: 2rem;
  --gap-xl: 3rem;
  --gap-xxl: 5rem;
}

:root[data-theme="light"] {
  --text: var(--neutrals-black);
  --bg: var(--neutrals-white);
  --bg-secondary: var(--neutrals-black);
  --bg-tertiary: var(--neutrals-grey);
}

:root[data-theme="dark"] {
  --text: var(--neutrals-white);
  --bg: var(--neutrals-black);
  --bg-secondary: var(--neutrals-white);
  --bg-tertiary: var(--neutrals-dark-grey)
}
/*
  Artevelde hogeschool CSS Reset v0.2
  Adapted version from Josh's Custom CSS Reset https://www.joshwcomeau.com/css/custom-css-reset/
*/

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  min-height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
.container {
  display: flex;
}

.container--column {
  flex-direction: column;
  gap: var(--gap-l);
}

.container--row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-xl);
  align-items: center;

  @media screen and (min-width: 768px) {
    grid-template-columns: 1fr 1fr;
  }
}

.container__text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}

.container__text a {
  color: var(--text);

}

.container--centered {
  justify-content: center;
  align-items: center;
}

.phone__icon-container {
  position: relative;
}
.footer {
  padding: 1rem;
}
.footer p {
  font-size: 1.2rem;
}
.grid-list__item {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border-radius: 1.5rem;
  align-items: flex-start;
  gap: var(--gap-s);
  transition: all 0.3s ease-in-out;
  z-index: 0;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1;

  &:hover {
    color: var(--bg);

    .btn--secondary {
      background-color: var(--bg);
      color: var(--bg-secondary);
    }
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--text);
    z-index: -1;
    transition: width 0.3s ease;
  }

  &:hover::before {
    width: 100%;
  }
}

.grid-list__title {
  font-size: 2rem;
  font-weight: 600;
}

.grid-list__actions {
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
  width: 100%;
}

.btn--projects {
  width: 100%;
  text-align: center;
}

@container project-grid (min-width: 600px) {
  .grid-list__item {
    align-items: center;
    gap: var(--gap-l);
    grid-column: 1 / -1;
  }
  .grid-list__title {
    font-size: 3.5rem;
  }

  .grid-list__actions {
    flex-direction: row;
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn--projects {
    width: auto;
    text-align: left;
  }
}
.hero {
  height: 100vh;
  height: 100svh;
  position: relative;
  overflow: hidden;
  
}

.hero iframe {
  transform: scale(1.2);
}

.hero__content {
  position: absolute;
  bottom: 3rem;
  left: 1.5rem;
  right: 1.5rem;
  pointer-events: none;
}

.hero__title {
  line-height: 1;
}

.hero__text {
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0.5;

  @media screen and (min-width: 768px) {
    font-size: 1.7rem;
  }
}
.section {
  padding: 0 1rem;
  max-width: 90rem;
  width: 100%;
  margin: 0 auto;
}

.section--contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xxl);
  min-height: 80svh;
  min-height: 80vh;
}

.section--footer {
  padding: 1rem;
  background-color: var(--bg-tertiary);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
  align-items: center;
  justify-content: space-between;

  @media screen and (min-width: 768px) {
    flex-direction: row;
  }

  p {
    text-align: center;
  }
}

.section--bottom-spacing {
  padding-bottom: 5rem;

  @media screen and (min-width: 768px) {
    padding-bottom: 10rem;
  }
}

.section__footer {
  display: flex;
  justify-content: flex-end;
}


.btn {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: rgb(0, 0, 0) 0px 3px 0px 4px, rgba(255, 227, 46, 0) 0px 6px 8px 8px, rgba(255, 221, 0, 0) 0px 0px 56px 40px, rgba(255, 222, 5, 0) 0px 0px 120px 100px, rgba(255, 222, 5, 0) 0px 0px 200px 120px, rgba(0, 0, 0, 0.2) 0px 14px 8px 0px, rgba(0, 0, 0, 0.3) 0px 19px 8px 0px;
}

.btn--secondary,
.btn--tertiary {
  background-color: var(--bg-secondary);
  color: var(--bg);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--close {
  background-color: var(--bg-secondary);
  color: var(--bg);
}
.card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-areas:
    "title description"
    "divider divider";
  gap: var(--gap-s);
  padding: 1rem 0;
}

.card__title {
  grid-area: title;
  font-size: 1.5rem;
  margin: 0;
}

.card__description {
  grid-area: description;
  margin: 0;
  color: #666;
}

.card__divider {
  grid-area: divider;
  height: 1px;
  border: none;
  background-color: #e0e0e0;
  margin-top: 0.5rem;
}
form label {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  gap: var(--gap-xs);
  color: var(--text);
}

.form-label {
  font-weight: 600;
}

input,
textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--neutrals-dark-grey);
  border-radius: 0.75rem;
  background-color: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--active-nav-link);
  box-shadow: 0 0 0 2px rgba(191, 109, 27, 0.3);
}

textarea {
  resize: none;
  min-height: 10rem;
}

.form-label:has(+ input[required])::after,
.form-label:has(+ textarea[required])::after {
  content: " *";
  color: var(--active-nav-link);
  font-weight: bold;
}
.img__container {
  display: flex;
  justify-content: center;
}

.sun {
  height: 14rem;

  @media screen and (min-width: 768px) {
    height: 20rem;
  }
}

.img--socials {
  position: absolute;
  top: 0;
  height: 3.5rem;
}

.img--socials-x {
  transform: rotate(4deg);
}

.img--socials-gh {
  transform: translateY(-4px);
}

.img--socials-li {
  transform: rotate(-3deg);
}

.link__socials .img--socials {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.link__socials:hover .img--socials,
.link__socials:hover .img--socials-x,
.link__socials:hover .img--socials-gh,
.link__socials:hover .img--socials-li {
  transform: translateY(-3rem);
  transition: transform 0.3s ease-in-out;
}

.deco-svg {
  position: absolute;
  top: -1rem;
  transform: scale(0.5);
  z-index: 1;
  pointer-events: none;
}

.left-svg {
  position: absolute;
  left: -8rem;
  transform: translateY(-45%) scale(0.4) rotate(5deg);
}

.right-svg {
  position: absolute;
  right: -7rem;
  transform: translateY(-25%) scale(0.5) rotate(0deg);
}

.draw-path {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: drawLoopAnimation 3s ease-in-out infinite;
}


@media screen and (min-width: 768px) {
  .right-svg {
    right: -8rem;
    transform: translateY(-25%) scale(0.5) rotate(-5deg);
  }
  .left-svg {
    left: -9rem;
    transform: translateY(-45%) scale(0.5) rotate(5deg);
  }
}

@media screen and (min-width: 1024px) {
  .right-svg {
    right: -13rem;
    transform: translateY(5%) scale(0.6) rotate(-5deg);
  }
  .left-svg {
    left: -9rem;
    transform: translateY(-45%) scale(0.6) rotate(5deg);
  }
}

@media (hover: hover) {
  .draw-path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    transition: stroke-dashoffset 0s;
    animation: none;
  }
  
  .left-svg .draw-path,
  .right-svg .draw-path {
    opacity: 0;
  }
  
  .link__container:hover .draw-path {
    stroke-dashoffset: 0;
    opacity: 1;
    transition: stroke-dashoffset 1.5s ease-in-out, opacity 0.3s ease-in;
  }
}


.img--mask {
  -webkit-mask-image: url("../images/blob.svg");
  mask-image: url("../images/blob.svg");
  -webkit-mask-size: 150%;
          mask-size: 150%;
  -webkit-mask-position: center;
          mask-position: center;
  transition: all 0.3s ease-in-out;
}

.img--mask:hover {
  -webkit-mask-size: 500%;
          mask-size: 500%;
}

.phone__icon {
  width: 100%;
  height: 100%;
  position: relative;
  transform-origin: center;
  display: inline-block;
  scale: 0.7;
  animation: phoneShake 1s ease-in-out infinite;

  @media screen and (min-width: 768px) {
    scale: 1;
  }
}

.svg-phone-drawing {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -6rem;
  right: -4rem;
  transform: rotate(100deg);
  scale: 0.5;

  @media screen and (min-width: 768px) {
    scale: 0.7;
    top: -7rem;
    right: -5rem;
  }
}

.link {
  padding: 0.75rem;
  border-radius: 2rem;
  cursor: pointer;
  gap: var(--gap-xs);
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--bg-secondary);
  color: var(--bg);
  font-weight: 500;
  box-shadow: rgb(0, 0, 0) 0px 3px 0px 4px,
    rgba(255, 227, 46, 0) 0px 6px 8px 8px,
    rgba(255, 221, 0, 0) 0px 0px 56px 40px,
    rgba(255, 222, 5, 0) 0px 0px 120px 100px,
    rgba(255, 222, 5, 0) 0px 0px 200px 120px,
    rgba(0, 0, 0, 0.2) 0px 14px 8px 0px, rgba(0, 0, 0, 0.3) 0px 19px 8px 0px;
}

.link--primary {
  display: flex;
  align-self: flex-end;
  font-size: 1.5rem;
  transition: all 0.4s ease-in-out;
  &:hover {
    transform: translateY(-0.5rem);
  }
}

.link--secondary {
  padding: 1rem 1.5rem;
  border-radius: 128px;
  font-size: 3rem;
  font-weight: 700;
  color: var(--neutrals-white);
  background-color: var(--neutrals-black);

  @media screen and (min-width: 768px) {
    font-size: 3rem;
  }

  @media screen and (min-width: 1024px) {
    font-size: 10rem;
  }
}

.cta-text {
  opacity: 0.5;
  font-size: 1.5rem;
  transform: rotate(-5deg);
  max-width: 22rem;
  font-style: italic;
  text-align: center;

  @media screen and (min-width: 768px) {
    font-size: 2rem;
  }
}

.link__socials {
  position: relative;

  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
}

.link__socials p {
  opacity: 0;
  font-size: 0.8rem;
  transition: 0.4s ease-in-out;
}

.link__socials:hover p {
  opacity: 1;
}

.link__container {
  display: flex;
  position: relative;
  border-radius: 128px;
  height: -moz-fit-content;
  height: fit-content;
  transform: rotate(4deg);
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease;
  animation: pulse 3s infinite;

  @media (hover: hover) {
    animation: none;
    &:hover {
      animation: pulse 3s infinite;
    }
  }
}

.list {
  display: flex;

}

.list--column {
  flex-direction: column;
}

.list--skills {
  display: grid;
  gap: var(--gap-s);
}

.list--skills:hover .list-skill__item:not(:hover) {
  filter: grayscale(1) blur(4px);
}

.list-skill__item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  -moz-column-gap: var(--gap-s);
       column-gap: var(--gap-s);
  transition: all 0.3s ease-in-out;
}

.list--skills .icon {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.list--skills p {
  justify-self: start;
}

.list-socials {
  gap: var(--gap-xs);
}

.list__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gap-s);
  container-type: inline-size;
  container-name: project-grid;
}

@media (hover: hover) {
  .list__grid:hover .grid-list__item:not(:hover) {
    filter: grayscale(1) blur(4px);
  }
}


.modal {
  padding: 0;
  border: none;
  border-radius: 0.75rem;
  max-width: 40rem;
  width: 100%;
  background-color: var(--bg);
  color: var(--text);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  transition-property: display opacity scale;
  transition-duration: 1s;
  transition-behavior: allow-discrete;
  opacity: 0;
  scale: 0;
}

.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.25);
}


.modal__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-m);
  padding: 2rem;
}

.modal__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
  max-height: 20rem;
}

.modal__text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}

dialog[open] {
  display: block;
  opacity: 1;
  scale: 1;

  @starting-style {
    opacity: 0;
    scale: 0;
  }
}
.main-nav {
  position: fixed;
  top: 0;
  padding: 1rem;
  z-index: 1000; 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%);
}

.main-nav__toggle {
  display: flex;
  align-items: center;
}

.main-nav__menu {
  background-color: var(--text);
  display: flex;
  padding: 0.3rem;
  border-radius: 1.5rem;
  flex-wrap: wrap;
  -moz-column-gap: var(--gap-s);
       column-gap: var(--gap-s);
  row-gap: 0rem;
  justify-content: center;
}

.main-nav__menu-item {
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;

  &.active {
    background-color: var(--active-nav-link);
  }

  &.active .main-nav__menu-link {
    opacity: 1;
  }
}



.main-nav__menu-link {
  opacity: 0.5;
  color: var(--bg);
  transition: all 0.3s ease-in-out;
  font-weight: 500;

  &:hover {
    opacity: 1;
  }
}



.popover {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  background-color: var(--text);
  color: var(--bg);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  border: none;

  display: none;
  transition-property: display opacity scale;
  transition-duration: 1s;
  transition-behavior: allow-discrete;
  opacity: 0;
  scale: 0;

  &:popover-open {
    display: block;
    opacity: 1;
    scale: 1;
    animation: fadeScaleOut 1s ease forwards;
    animation-delay: 2s;

    @starting-style {
      opacity: 0;
      scale: 0;
    }
  }
}



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.theme-toggle {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  padding-left: 0.5rem;
  display: flex;
  align-items: center;
}

.theme-toggle__moon {
  fill: var(--neutrals-white);
  transition: all ease-in-out 0.8s;
}

.theme-toggle__sun {
  fill: var(--active-nav-link);
  transition: all ease-in-out 0.8s;
}

.theme-toggle__sun:hover,
.theme-toggle__moon:hover {
  rotate: 360deg;
}
.autoShow{
  animation: autoShowAnimation both;
  animation-timeline: view(80% 5%);
}

@starting-style {
  .autoShow {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
  }
}

@keyframes autoShowAnimation{
  from{
      opacity: 0;
      transform: translateY(200px) scale(0.3);
  }to{
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}
.autoRotate{
  animation: autoRotateAnimation;
  animation-timeline: view();
}


@starting-style {
  .autoRotate {
    transform: rotate(0deg);
  }
}

@keyframes autoRotateAnimation{
  from{
      transform: rotate(0deg);
  }
  to{
      transform: rotate(360deg);
  }
}
.fadeInLeft{
  animation: fadeInLeftAnimation both;
  animation-timeline: view(80% 5%);
}

@starting-style {
  .fadeInLeft {
    opacity: 0;
    transform: translateX(-400px);
  }
}

@keyframes fadeInLeftAnimation{
  from{
      opacity: 0;
      transform: translateX(-400px);
  }to{
      opacity: 1;
      transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 
      0 0 0px var(--active-nav-link),
      0 0 0px var(--active-nav-link),
      0 0 0px var(--active-nav-link),
      0 0 0px var(--active-nav-link);
  }
  50% {
    box-shadow: 
      0 0 16px var(--active-nav-link),
      0 0 32px var(--active-nav-link),
      0 0 64px var(--active-nav-link),
      0 0 128px var(--active-nav-link);
  }
  100% {
    box-shadow: 
      0 0 0px var(--active-nav-link),
      0 0 0px var(--active-nav-link),
      0 0 0px var(--active-nav-link),
      0 0 0px var(--active-nav-link);
  }
}
.quick-flip {
  --transition-duration: 0.375s;
  --timing-function: cubic-bezier(0.66, 0, 0.34, 1);

  overflow-y: clip;

  > * {
    display: block;
    transition: transform var(--transition-duration) var(--timing-function),
      translate 0ms calc(var(--transition-duration) / 2);
  }

  &:is(:hover) > * {
    transform: translateY(-2lh);
    translate: 0 2lh;
  }
}
@view-transition {
  navigation: auto;
}

::view-transition-old(title),
::view-transition-new(title),
::view-transition-old(hero-text),
::view-transition-new(hero-text) {
  animation-duration: 600ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

::view-transition-old(active-link),
::view-transition-new(active-link) {
  animation-duration: 200ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

::view-transition-old(title) {
  animation-name: fade-out;
}
::view-transition-new(title) {
  animation-name: fade-in;
  animation-delay: 600ms;
}

::view-transition-old(active-link) {
  animation-name: fade-out;
}
::view-transition-new(active-link) {
  animation-name: fade-in;
}

::view-transition-old(hero-text) {
  animation-name: hero-text-slide-out;
}

::view-transition-new(hero-text) {
  animation-name: hero-text-slide-in;
}

@keyframes hero-text-slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100vw);
  }
}

@keyframes hero-text-slide-in {
  from {
    opacity: 0;
    transform: translateX(-100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

html:not(:has(::view-transition-old(root))) body {
  transition: opacity 0.4s ease;
}

.fadeInNOut {
  animation: fadeInNOutAnimation linear both;
  animation-timeline: view();
}

@keyframes fadeInNOutAnimation {
  0% {
    opacity: 0;
  }
  20%{
    opacity: 0;
}
30%, 70%{
    opacity: 1;
}
80%{
    opacity: 0;
}
100% {
  opacity: 0;
}
}
@keyframes fadeScaleOut {
  from {
    opacity: 1;
    scale: 1;
  }
  to {
    opacity: 0;
    scale: 0;
  }
}
.drawLoop {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: drawLoopAnimation 3s ease-in-out infinite;
}

@keyframes drawLoopAnimation {
  0% {
    stroke-dashoffset: 1500;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 1500;
    opacity: 0;
  }
}
@keyframes phoneShake {
  0%   { transform: rotate(0deg) scale(1); }
  20%  { transform: rotate(5deg) scale(1.05); }
  40%  { transform: rotate(-3deg) scale(1.05); }
  60%  { transform: rotate(3deg) scale(1.05); }
  80%  { transform: rotate(-1deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background-color: var(--bg);
}

a {
  color: var(--neutrals-black);
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  white-space: nowrap;
  font-size: clamp(1rem, 9vw, 15rem);

  @media screen and (min-width: 768px) {
    font-size: clamp(1rem, 9.5vw, 15rem);
  }
}

h2 {
  font-size: 3rem;
}

p {
  font-size: 1.2rem;
}

.hidden {
  display: none;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-xxl);
}

@media screen and (min-width: 768px) {
  p {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 5rem;
  }
}

.responsive-map {
  width: 100%;
  height: 15.625rem;
  border: 0;
  border-radius: 0.75rem;

  @media (min-width: 30rem) {
    height: 21.875rem;
  }

  @media (min-width: 48rem) {
    height: 28.125rem;
  }
}

