body {
    color: #080808;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 10vh;
}

::selection {
  background: #d1d1d1;
  color: rgb(26, 26, 26);
}

.navlink {
    display: flex;
    border-radius: 10px;
    width: 5vw;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.topnav {
    height: 7vh;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px 0px 0px 20px;
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.contenthighlight {
  color: #f48484;
}

.content {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #efefef;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* makes text visible */
  z-index: 1;
}

.text {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: white;
  font-size: 5rem;
  font-family: "DM Sans", sans-serif;
}

.video-wrapper {
  width: 80%;
  height: 80%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

