html {
  scroll-behavior: smooth;
  background-color: #FFF;
  color: black;
  scroll-snap-type: y proximity;
}

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

* {
  box-sizing: border-box;
}

h1,
h2,
h3 {
  margin: 0;
}

p {
  margin: 0;
}

.balance {
  text-wrap: balance;
}

h1 {
  font-size: 4rem;
  line-height: 0.8;
  margin-block-start: 2rem;
  text-transform: uppercase;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

h2 {
  font-size: 3rem;
}

.subtitle {
  color: black;
  font-weight: 600;
  font-style: italic;
}

.btn {
  border: 5px solid currentColor;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 100px;
  color: currentColor;
}

main {
  height: 100svh;
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}

.spacing.seperate {
  padding-inline: 1.5rem;
}

.seperate {
  display: grid;
  align-content: space-between;
  height: 100%;
}

.decorativeImg {
  width: 100%;
  max-height: 30%;
  margin-block-start: -3px;
  -o-object-fit: cover;
     object-fit: cover;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  height: 5rem;
  padding-block-start: 0.5rem;
  border-block-start: 2px solid black;
}
.socials > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials > a > img {
  max-height: 60%;
}

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

.btn-circle {
  aspect-ratio: 1;
  border: 5px solid black;
  border-radius: 50%;
  transition: background-color 300ms ease;
}
.btn-circle:hover {
  background-color: rgb(219.3, 219.3, 219.3);
}

.btn-primary {
  width: 100%;
  background-color: black;
  color: #FFF;
  border-radius: 100px;
  border: 5px solid black;
  transition: background-color 300ms ease;
}
.btn-primary:hover {
  background-color: rgb(25.5, 25.5, 25.5);
}

.btn-secondary {
  text-decoration: underline;
  border-radius: 100px;
  background-color: #FFF;
  align-content: center;
}
.btn-secondary:hover {
  background-color: rgb(219.3, 219.3, 219.3);
}

.scroll-reminder {
  text-align: center;
  padding-block: 30px;
}
.scroll-reminder a {
  padding: 10px;
  border-radius: 16px;
  display: inline-block;
}
.scroll-reminder > a:hover {
  background-color: rgb(237.15, 237.15, 237.15);
}
.scroll-reminder > a:active {
  scale: 1.05;
}

.section-telephone {
  display: grid;
  align-content: space-between;
  scroll-snap-align: start;
  height: 100svh;
  padding: 1.5rem;
  overflow-y: hidden;
}
.section-telephone img {
  max-height: 400px;
  overflow: hidden;
  justify-self: center;
}

.btn-container {
  width: 100%;
  flex-direction: column;
  text-align: center;
}
.btn-container .btn-primary,
.btn-container .btn-secondary {
  margin-block-start: 20px;
  padding-block: 21.2px;
  display: block;
}

.section-TiqiTaqa {
  height: 100svh;
  text-align: center;
  background-color: white;
  color: black;
  display: grid;
  align-content: center;
  justify-content: center;
}
.section-TiqiTaqa > img {
  max-width: 15rem;
}

footer {
  padding: 2rem;
  background-color: black;
  color: #FFF;
}
footer p {
  width: 45ch;
  text-wrap: balance;
}
footer p + p {
  margin-block-start: 1rem;
}
footer a {
  text-decoration: underline;
}

@media (min-width: 1150px) {
  main {
    flex-direction: row-reverse;
  }
  .spacing.seperate {
    padding-inline: 1.5rem 0;
  }
  .decorativeImg {
    min-height: 100%;
  }
  .section-telephone {
    grid-template-areas: "head img" "links img";
  }
  .header {
    grid-area: head;
  }
  .section-telephone img {
    max-height: unset;
    height: 100%;
    grid-area: img;
  }
  .btn-container {
    grid-area: links;
    display: flex;
    align-self: end;
    flex-direction: row;
    width: 100%;
    max-width: 600px;
    margin-inline: auto 20px;
  }
  .btn-container .btn-secondary,
  .btn-container .btn-primary {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */