html { scroll-behavior: smooth;}
body {
  width: 100vw;
  margin: 0;
  padding: 0;
  background-color: black;
  overflow-x: hidden;
  overflow-y: scroll;
}

a {  /* text for menu*/
  color: #E580EB;
  text-decoration: none;
  font-family: roboto;
  font-weight: bold;
  font-style: normal;
  font-size: 16pt;
}

a2 { /* a2 -- a4 text in contact details*/
  color: white;
  text-decoration: none;
  font-family: roboto;
  font-weight: bold;
  font-style: normal;
  font-size: 16pt;
}

a3 {
  color: white;
  text-decoration: none;
  font-family: roboto;
  font-weight: light;
  font-style: normal;
  font-size: 14pt;
}

a4 {
  color: white;
  text-decoration: none;
  font-family: roboto;
  font-weight: bold;
  font-style: normal;
  line-height: 2.5;
  font-size: 16pt;
}

h1 {
  text-decoration: none;
  font-family: roboto;
  font-weight: bold;
  font-style: normal;
  font-size: 25pt;
}

p { /*text in showreel page*/
  text-decoration: none;
  font-family: roboto;
  font-weight: light;
  font-style: normal;
  font-size: 13pt;
  color:black;
}

p2 { /*text in showreel page*/
  text-decoration: none;
  font-family: roboto;
  font-weight: light;
  font-style: normal;
  font-size: 13pt;
  color:white;
}

p3 { /*text in about page for phone screens, also text for copyright in the footer*/
  text-decoration: none;
  font-family: roboto;
  font-weight: light;
  font-style: normal;
  font-size: 10pt;
  color: #f2f2f2;
}

.index-page {
  position: absolute;
  width:100vw;
  height:auto;
  background-color: black;
}

.header {
  position: absolute;
  top:0;
  left: 0;
  width:100vw;
  height:100px;
  background-color: black;
   /*  background-color: #E580EB;*/
  z-index: 1;
}

.logo-img {
  width:38px;
  height:48px;
}

.top--menu {
  position: absolute;
  right: 50px;
  width: 100vw;
  min-width: 150px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
   /*  background-color: #E580EB;*/
}

.topnav a {
  align-self: right;
  align-items: right;
  float: right;
  text-align: right;
  color: #f2f2f2;
  padding: 14px 16px;
  text-decoration: none;
}

.topnav a:hover {
  color: #E580EB;
}

.topnav-pink a {
  align-self: right;
  align-items: right;
  float: right;
  text-align: left;
  color: #E580EB;
  padding: 14px 16px;
  text-decoration: none;
}
.topnav-pink a:hover {
  color: #F2BCF7;
}

.logo {
  position: absolute;
  left: 50px;
  width: 35px;
  height:auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.video-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: fill;
  background-color: black;
}

.video-item {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay {
  position: absolute;
  top:100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 1080px;
  background: rgba(0, 0, 0, 0.6);
  display: block;
  align-items:center;
  justify-content: center;
}

.notext {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  text-align: center;
  color:white;

}
.about-page {
  position: relative;
  top: 1180px;
  width: 100vw;
  height: 1080px;
  background-color: black;
}

.about-container {
  position: absolute;
  width: 60vw;
  left:50%;
  padding-top:60px;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.about-text{
  position: absolute;
  width: 100%;
  overflow: hidden;
  object-fit: fill;
  line-height: 1.5;
  z-index: 1;
}

.contact-container {
  position: absolute;
  width: 100%;
  height: 400px;
  margin-top: 300px;
}

.contact-details {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.about-image {
  position: absolute;
  right:0;
  width: 55%;
  height: 100%;
  background-color:white;

}
.img-about {
  position: absolute;
  bottom:20px;
  left:55%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height:90%;
  weight:auto;
}

 .icon-menu {
  width: 88px;
  height:60px;
  padding-top:20px;
  z-index: 3;
 }

 .icon-button {
   background-color: rgba(255, 255, 255, 0.2); /* Blue background */
   border: 2px solid white;/* Remove borders */
   color: white; /* White text */
   padding: 8px 10px;  /* Some padding */
   font-size: 20px;
   border-radius: 13px; /* Set a font size */
   cursor: pointer; /* Mouse pointer on hover */
 }

 /* Darker background on mouse-over */
 .icon-button:hover {
   color:#E580EB;
   border: 2px solid #E580EB;
 }


  .home-button {
    position: absolute;
    right:0;
    top: 35vh;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: rotate(-90deg) translateX(-100%);
    padding: 12px 24px;
    font-family: roboto;
    font-weight: normal;
    font-style: normal;
    font-size: 12pt;
    color:white;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    cursor: pointer;
    border-radius: 10px;
    z-index: 2;
  }

  .home-button:hover {
    background-color: #E580EB;
    border-color: #E580EB;
  }

 .footer {
   position: absolute;
   width: 100vw;
   height:100px;
   bottom:0;
   background-color: #E580EB;
 }

 .text-footer{
   position: absolute;
   top:10px;
   right:20px;
 }

.showreel-page {
  position: absolute;
  width:100vw;
  height:1500px;
  background-color: white;
}

.showreel--frame {
  position: absolute;
  width: 70vw;
  height: auto;
  left: 50%;
  top:200px;
  align-self: center;
  align-items: center;
  transform: translateX(-50%);
}

.text-showreel {
  position: absolute;
  width:90%;
  padding-top:30px;
}


 .footer-showreel {
   position: absolute;
   width: 100vw;
   height:100px;
   bottom:0;
   background-color: #E580EB;
 }


@media only screen and (min-width: 2560px) {

  .video-container {
    width: 1920px;
    height: 1080px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-page{
    height:1200px;
  }

  .about-container {
    width: 1920px;
  }
  p { /*text in showreel page*/
    font-size: 16pt;
  }
  p2 { /*text in about*/
    font-size: 16pt;
  }
  .contact-container {
    height: 600px;
    margin-top: 300px;
  }
    .showreel-page {
      height:2160px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 2560px){
  .video-container {
    width: 1920px;
    height: 1080px;
    left: 50%;
    transform: translateX(-50%);
  }
  .showreel-page {
    height:1700px;
  }

}

@media only screen and (min-width: 860px) and (max-width: 1200px) {
  .showreel-page {
    height:1300px;
  }
  .about-image {
    display: none;
  }
}
@media only screen and (min-width: 600px) and (max-width: 860px) {
  .showreel-page {
    height:1300px;
  }
  .about-image {
    display: none;
  }
  .top--menu {
    right: 10px;
  }
  .logo {
    left: 20px;
  }
  p2 { /*text in showreel page*/
    font-size: 11pt;
  }
}

@media only screen and (max-width: 600px) {
  a {  /* text for menu*/
    font-size: 14pt;
  }
  .showreel-page {
    height:1300px;
  }
  .about-image {
    display: none;
  }
  .top--menu {
    right: 10px;
  }
  .logo {
    left: 20px;
      width: 25px;
      height:auto;
  }
  p2 { /*text in showreel page*/
    font-size: 11pt;
  }
  .contact-container {
  margin-top: 530px;
  }
}
