/* @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap"); */

:root {
  --tealBlue: #64dfdf;
  --lemonYellow: #fdcd2a;
}
html {
  scroll-padding-top: 100px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
body {
  font-size: clamp(1rem, 2vw, 2rem);
  /* font-size: clamp(1rem, 1.5vw, 1.5rem); */
}
.company {
  display: flex;
  background-color: var(--tealBlue);
  padding: 5px;
}
.logo {
  padding: 0 2vw 0 4vw;
}
.logo img {
  height: 10vh;
  border-radius: 50%;
}
.companyName {
  display: inline-block;
  display: flex;
  align-items: center;
}

.hero {
  background-image: url("./mapWide.png");
  /* do i need it */
  display: flex;
  height: 30vw;
  width: 100%;
  background-position: center;
  /* background-position: right;  Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: contain; /* Resize the background image to cover the entire container */
}

nav {
  background-color: var(--lemonYellow);
  position: sticky;
  top: 0;
}
nav ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
}

nav li {
  padding: 2vw;
  /* font-size: 2vw; */
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}
@media (max-width: 470px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav ul li {
    font-size: 1rem;
    /* font-size: 4vw; */
  }
}

a,
a:visited,
a:active {
  text-decoration: none;
  color: #111111;
}
a:hover {
  text-decoration: underline;
}

h1,
h2 {
  padding-left: 5vw;
}
h1 {
  padding-bottom: 4vw;
  /* font-size: 3vw; */
}

h2 {
  font-weight: 400;
  letter-spacing: 0.2em;
  /* font-size: 4vw; */
}

.content {
  padding: 10vh;
}

.section {
  padding-bottom: 5vh;
}
