@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Open+Sans:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background-color: #103b33;
  max-width: 700px;
}

h1,
h2,
h3 {
  font-family: 'DM Serif Display', serif;
  margin: 0;
  padding: 0;
  color: #ffff;
}

p {
  margin: 0;
  padding: 0;
  color: #ffff;
}

a {
  text-decoration: none;
}

.back-arrow {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: rgba(217, 217, 217, 0.4);
  color: white;
  font-size: 2.4rem;
  border-radius: 60px;
  box-shadow: 0 0 2px #888;
  padding: 0.2em 0.4em;
}

.header-container {
  position: fixed;
  max-width: 700px;
  z-index: 1000;
  top: 0;
  background-color: #0a2722;
  height: 8rem;
  width: 100%;
}

.title {
  font-size: 3rem;
  margin: 2rem 2rem 2rem;
  text-align: center;
}

main {
  margin-top: 44rem;
  margin-bottom: 2rem;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.map {
  height: 34rem;
  width: 100%;
}

h1.snippet-h1 {
  color: black;
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
  text-align: start;
}

.snippet-p {
  color: black;
  max-width: 200px;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.snippet-a {
  font-weight: 500;
  font-size: 1.4rem;
}

.snippet-a:hover {
  text-decoration: underline;
}

.map-icon-label i {
  font-size: 24px;
  color: #ffffff;
  line-height: 55px;
  text-align: center;
  white-space: nowrap;
}

.tips-container {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tip-cont {
  background-color: rgba(255, 255, 255, 0.199);
  padding: 2rem 1.4rem;
  border-radius: 1rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.tip-cont-right {
  margin-left: auto;
}

.tip-cont-right a {
  display: block;
}

.icon-left {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.199);
  padding: 12px;
}

.details-h1 {
  font-size: 1.8rem;
  font-family: 'Open Sans', sans-serif;
  color: white;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.p-a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.details-p {
  font-size: 1.4rem;
  color: #f1f1f1;
}

.details-a {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ea4335;
  border-radius: 60%;
  font-size: 2.4rem;
  font-weight: 900;
  cursor: pointer;
  padding: 1rem 1.6rem;
  text-align: center;
  outline: none;
}

.details-a span {
  margin: 0;
}

span {
  font-family: 'Font Awesome\ 5 Free';
  margin-right: 1rem;
}

@media screen and (min-width: 700px) {
  body {
    margin: 0 auto;
  }
}
