* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Montserrat, sans-serif;
}

body {
  font-size: 1.5vw;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #dbdcde;
}
/* Header flex CSS */
header {
  display: flex;
  position: fixed;
  width: 100%;
  top: 0px;
  height: 50px;
  align-items: center;
  justify-content: center;
  font-family: Outfit;
  background-color: #dbdcde;
  z-index: 1;
}

nav {
  margin-left: auto;
  padding-right: 30px;
}

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

a:hover {
  text-decoration: underline;
}
/* Footer flex CSS */
footer {
  display: flex;
  position: fixed;
  justify-content: space-evenly;
  width: 100%;
  bottom: 0px;
  height: 40px;
  background-color: #dbdcde;
  align-items: center;
}

.sticky-banner {
  position: sticky;
  top: 0px;
  width: 50%;
  margin: 0px;
  font-family: Outfit;
  background-color: #dbdcde;
}

/* container relative fixes the wording to each container..breaks the HEADER!!*/
.feature {
  position: relative;
  background-size: cover;
  height: 100vh;
}

/* Text*/
.text {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 40%;
  text-align: center;
  line-height: 2.5rem;
  opacity: 0.6;
  background-color: #dbdcde;
  transform: translate(-50%, -50%);
  padding: 4px;
}

.icons {
  margin-right: 100px;
}

.btt {
  position: fixed;
  bottom: 50px;
  right: 30px;
  color: yellow;
}

.awayimg {
  background-image: url("static/away.jpg");
}

.groupimg {
  background-image: url("static/group.jpg");
}

.wheelchairimg {
  background-image: url("static/wheelchair.jpg");
}

#textarea {
  resize: none;
}
