:root {
     --font-small: 1rem;
     --font-medium: 1.8rem;
     --font-large: 2.2rem;
     --font-xlarge: 5rem;
 }
 
 @font-face {
     font-family: 'doto';
     src: url('../fonts/Doto-VariableFont_ROND_wght.ttf') format('truetype');
 }
 
 @font-face {
     font-family: 'figtree';
     src: url('../fonts/Figtree-VariableFont_wght.ttf') format('truetype');
 }
 
 body {
     margin: 0;
     padding: 0;
     width: 100vw;
     height: 100vh;
     overflow: hidden;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
 
     font-family: 'figtree', sans-serif;
 }
 
 #layer{
     position: absolute;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
 }

 #logo{
     position: absolute;
     top: 50px;
     left: 50px;
 }

 #playButton{
     position: absolute;
     top: 35%;
     left: 50%;
     transform: translateX(-50%);
     cursor: pointer;
 }

 .play-trailer-button {
     width: 150px;
     height: 150px;
     border: 5px solid #ffffff;
     border-radius: 50%;
     background-color: transparent;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     font-size: 18px;
     text-align: center;
     cursor: pointer;
     user-select: none;
     transition: transform 0.2s;
     color: #ffffff;
     letter-spacing: 3px;
   }
   .play-trailer-button:hover {
     transform: scale(1.1);
   }
 
 #contact {
     font-weight: 100;
     font-size: 20px;
     color: white;
     line-height: 1.5;
     margin-top: 4rem;
     position: absolute;
     left: 50%;
     top: 75%;
     transform: translateX(-50%);
     text-align: center;
     z-index: 99;
 }
 
 #contact a {
     color: whitesmoke;
     text-decoration: none;
     font-weight: 500;
 }

 #VideoPlayer{
     background: rgb(0, 0, 0, 0.8);
     position: absolute;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     cursor: pointer;
     display: none;
     z-index: 999;
 }

 #videoClip{
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%,-50%);
 }

 .videoloop{
     width: 100vw;
     height: 100vh;
     object-fit: cover;
     z-index: -1;
 }
  
 #footer {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100vw;
     height: 20vh;
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
     font-family: 'doto', sans-serif;
     font-size: var(--font-small);
     background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
 }
 
 #footer a {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     color: white;
     text-decoration: none;
     font-weight: 500;
 }

 @media screen and (min-width: 768px) {

     #logo {
         width: 400px;
         height: auto;
     }
 }
 
 
 @media screen and (max-width: 767px) {
 
     #logo {
         width: 60vw;
         height: auto;
         left: 50%;
         transform: translateX(-50%);
     }
     
     #comingsoon {
 
         font-size: var(--font-large);
         letter-spacing: 0.4rem;
     }
 
     #contact {
         font-size: var(--font-small);
         top: 65%;
     }
 }
