* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ALL */

html {
  scroll-behavior: smooth;
}

body {
  background-color: #92b0bf;
  color: #e0dcd7;
}

/* NAV */

nav>ul {
  list-style-type: none;
  display: flex;
  justify-content: space-evenly;
  padding: 1.5%;

}

#navbar {
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: 1000;
}

a {
  color: #e0dcd7;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
}

a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* HEADER + MAIN */

header {
  padding: 5vmin 15vmin;
  align-items: center;
  display: flex;
  justify-content: center;
}



div {
  text-align: right;
}

h1, h2 {
  font-size: 10vmin;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}


#examples {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin: 2vmin;
}

#example {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin: 3em;
  flex-direction: column;
}
video {
  width: 30%;
  border-radius: 20px;
}
img {
  width: 50%;
}


