* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 20px;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 25px;
}

h1, h2 {
  color: #C4AD9D;
}
body {
  margin: 0;
  padding: 0;
  position: relative;
  padding-bottom: 58px;
  min-height: 100vh;
}
.paper-background {
  background: #e2e1e0;
}
main {
  margin: 2.5rem 5rem;
  padding: .6rem;
  background-color: #D3D3D3;
}

li {
  margin-left: 2.5rem;
}

.paper {
  background: #fff;
  border-radius: 4px;
}

.depth-1 {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.wrapper {
  display: flex;
  flex-direction: column;
}
.headline {
  justify-content: space-evenly;
  text-align: left;
}

.tykk {
  font-weight: 600;
}
.linkz {
  color: black;
}

/*------------*/

img {
  max-width: 100%;
  height: 44px;
  flex: 2;
}

.photo{
  max-width: 100%;
  height: 100%;
  flex: 2;    
}

/*------------*/

.video-gallery {
  display: flex;
  flex-direction: column;
gap: .5rem;
}

.video{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}
.video iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container {
  /* margin-right: 10px; */
  flex: 1;
} 
/* 
.video-container:last-child {
  /*margin-right: 0; 
}
*/
/*
.video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
}

.video::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
*/

/*------------*/

.navbar img {
  margin: 2px 4px;
}

.navbar {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center; 
  background-color: white;
  color: black;
  border-bottom: solid gray 1px;
}

.brand-title {
  font-size: 1.5rem;
}

.navbar-links {
  height: 100%;
}

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  display: block;
  text-decoration: none;
  color: black;
  padding: 1rem;
}

.navbar-links li:hover {
  background-color: #D3D3D3;
  font-weight: 600;
  transition: .5s;
}

.toggle-button {
  position: absolute;
  top: .75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 10px;
}

.logo:hover {
  transform: scale(1.2);
  transition: .5s;
}

/*------------*/

footer {
  text-align: center;
  background-color: #EFEFEF;
  color: black;
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid grey;
}

/*------------*/

@media (max-width: 800px) {
  .navbar {
      flex-direction: column;
      align-items: flex-start;
  }

  .toggle-button {
      display: flex;
  }

  .navbar-links {
      display: none;
      width: 100%;
  }

  .navbar-links ul {
      width: 100%;
      flex-direction: column;
  }

  .navbar-links ul li {
      text-align: center;
  }

  .navbar-links ul li a {
      padding: .5rem 1rem;
  }

  .navbar-links.active {
      display: flex;
  }

  .navbar img {
      margin: 2px 4px;
  }

  .section .video {
      flex-direction: column;
  }
main {
    margin: 1.25rem 2.5rem;
  }
}




