body{
    zoom: 1;
    transform: scale(1.0);
    transform-origin: 0 0;
    background: black;
    overflow: hidden;
    min-width: 1920px;
}

.wrapper{
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
    margin: auto;
    position: relative;
    overflow: hidden;
    box-sizing: content-box;
    padding: 0px;
    margin: 0;
    background: rgba(52, 50, 51, 0.85);

    color: #fff9f0;
}

.main-panel{
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
}

.main-panel-content{
    position: relative;
    width: 800px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-flow: column;

}

.main-nav{
    position: relative;
    display: flex;
    flex-direction: row;
    height: 50px;
    margin-top: 5%;
}

.nav-button{
    width: 20%;
    margin: 0 5%;
    padding: 0 5%;
    line-height: 50px;
    height: 50px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
}

.nav-button:hover{
    box-shadow: 0px 2px 5px 1px rgb(32, 31, 31);
    background-color:  rgba(52, 50, 51, 1);
    color: #fffdfa;
}

.text-block{
    position: relative;
    height: 300px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    transition: all 1s;
}

.text-main{
    height: 70%;
    width: 100%;
    font-size: 100px;
    font-weight: bold;
    text-align: center;
}
.text-main span{
    transition: font-size 0.5s ease-in-out;
}
.text-main span:hover{
    font-size: 105px;
}

.text-sub{
    height: 30%;
    width: 100%;
    text-align: center;
}
.text-sub span{
    transition: font-size 0.5s ease-in-out;
    font-size: 25px;
}

.text-sub span:hover{
    font-size: 30px;
}

.play-button-block{
    height: 150px;
    width: 100%;
    position: relative;
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
}

.play-instruction{
    height: 75px;
    line-height: 75px;
    width: 100%;
    text-align: center;
}

.play-instruction span{
    line-height: 30px;
    transition: font-size 0.5s ease-in-out;
}

.play-instruction span:hover{
    font-size: 20px;
}

.play-button-container{
    margin: auto;
    width: 75px;
    height: 75px;
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
    box-shadow: 0px 2px 5px 1px rgba(32, 31, 31, 0.5);
}
.play-button-container:hover{
    box-shadow: 0px 2px 5px 1px rgb(32, 31, 31);
    background-color:  rgba(52, 50, 51, 1);
    filter: invert(100%);
}

.play-button-container img{
    filter: invert(90%);

    margin: auto;
    height: 100%;
    width: 100%;
}




.video-containter{
    background: #000;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -99;
  overflow: hidden;
}

.video {
    position: relative;
    margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

footer{
    position: absolute;
    bottom: 20px;
    width: 99%;
    text-align: right;
    color: #696662;
}
footer a{
    color: #95835c;
}