
body,.video-container{
    height: 100vh;
    background-color: black;
    padding: 0;
    margin: 0;
    font-family: monospace;
    font-weight: lighter;
    overflow: hidden;
}
.container{
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
.video-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* transform: rotateY(190deg); */
  /* padding-bottom: 56.25%; */
}
.video-container video{
    height:100%;
    width: auto;


    /* top: 50%; right: 50%; */
    transform: scale(1.1,1.1);
    /* transition: all 0.6s ease; */

    /* filter: invert(70%); */
    /* min-width: 100%;
    min-height: 100%; */
}
.video-container::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.2);
}

iframe {
  /* optional */
  width: 100%;
  height: 100%;
}
.text-overlay-container{
    color:white;
    position: absolute;
    letter-spacing: 7px;
    /* background-color: rgba(0,0,0,0.3); */
    /* height: 100vh; */
    /* width: 100vw; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* border: 5px solid white; */
    z-index: 1;
}
.text-overlay-title,.text-overlay-contact{
    width:50vw;
}
.text-overlay-title p{
    margin: 1vh 0;
    font-size: 30px;
    /* transition: letter-spacing 1.5s ease; */
    /* border:4px solid red; */
}
/* .text-overlay-title p:hover{
    letter-spacing: 9px;
} */
.text-overlay-contact{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    /* text-align: left; */
    /* border:4px solid white; */
    /* margin-left: -30px; */
}
.text{
    text-decoration: none;
    color: white;
    transition: all 0.6s ease;
    width: fit-content;
    /* margin: 1vh 0; */
    /* text-align: left; */
}
.text:hover{
    cursor:crosshair;
    color: red;
    letter-spacing: 7.5px;
    /* transform: scale(1.03); */

}
.no-select{
    user-select:none;
}
@media (max-width: 2100px){
    .video-container video{
        transform: scale(1.2,1.2);
    }
}
/* Mobile font */
/* @media (min-width: 300px) and (max-width: 600px)  {
    .text-overlay-contact{
        font-size: 40px;
    }
    .text-overlay-title p{
        font-size: 60px;
    }
} */
@media (max-width: 1000px) {
    .text-overlay-contact{
        font-size: 30px;
    }
    .text-overlay-title p{
        font-size: 50px;
    }
}
@media (max-width: 700px) {

.text-overlay-title,.text-overlay-contact{
    width:100vw;
    text-align: center;
    }
    .text-overlay-contact{
        align-content: center;
    }
    .text-overlay-contact a{
        width: 100%;
    }
}
