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

html, body{
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
  background: white;
  font-family: Helvetica, Arial, sans-serif;
  cursor: default;
}

/* PAGINA */
.page {
    height: 100vh;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.container {
  display: flex;
  height: 100vh;
  align-items: stretch;
}

/* LINKER KOLOM */
.left {
  width: 35%;
  height: 100;
  position: relative;
  overflow: hidden;
}

.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#reelImage{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 50% 50%;
/*
50 50 midden
50 20 nog hoger
50 60 ietsnaar beneden
30 50 meer links
70 50 meer rechts */
    opacity: 1;
    transition: opacity 700ms ease;
    will-change: opacity;
}


.logo-vertical {
  position: absolute;
  top: 75%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: top right;
  z-index: 5;
  font-family: "Times New Roman", serif;
  font-size: 48px;
  letter-spacing: 4px;
  color: white;
  pointer-events: none;
  white-space: nowrap;
}

/* NAVIGATIE LINKS/RECHTS */
.nav-arrows {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: white;
  user-select: none;
  cursor: pointer;
}

/* RECHTER KOLOM */
.menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* correctie */
  padding-left: 50px;      /* afstand van linker kolom */
  padding-top: 350px;
  font-family: 'Orbitron', Helvetica, Arial, sans-serif;
}

.menu-top h1 {
  font-family: "Times New Roman", serif;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown .nav-link {
  cursor: pointer;
}

.dropdown {
  display: none; /* standaard verborgen */
  flex-direction: column;
  margin-top: 6px;
}

.dropdown a{
    font-size: 13px;
    margin-top: 12px;
    opacity: 0.85;
}

.nav-link{
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

/* Wanneer open */
.has-dropdown.open .dropdown {
  display: flex;
}

.menu-bottom a {
  display: block;
  margin: 5px 0;
  font-size: 16px;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

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

.menu a:hover,
.menu a:visited{
    color: black;
    text-decoration: none;
}