@font-face {
    font-family: 'PPMori-Regular';
    src: url('../fonts/PPMori-Regular.otf') format('opentype')
  }

  @font-face {
    font-family: 'PPMori-Variable';
    src: url('../fonts/PPMori-Variable.ttf') format('truetype')
  }

body{
    font-family: 'PPMori-Variable', sans-serif;
}

#bg-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.logo {
    position: fixed;
    margin-left: 50%;
    left: -315px;
    top: 50%;
    margin-top: -77px;
    text-align: center;
}

.logo img {
    width: 630px;
}

.logo p {
    color: #fff;
    font-size: 36px;
    margin-top: 10%;
    font-family: 'PPMori-Variable';
    font-weight: 100;
}


.left-side {
    color: #fff;
    left: 5%;
    top: 5%;
    position: absolute;
}

.left-side .header {
    font-size: 21px;
    font-family: 'PPMori-Variable';
}

.left-side .header p{
    padding: 0;
    margin: 0;
}

.left-side .header p:last-child {
    font-weight: bold;
}

.left-side .header p:first-child {
    font-weight: 100;
}

.contact-info {
    margin-top: 20px;
}

.left-side .contact-info h5 {
    color: #ff6666;
    margin-bottom: 20px;
}

.contact-info p{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'PPMori-Variable';
    font-weight: 100;
}

.left-side a,.left-side a:visited,.left-side a:active{
    color: #fff;
    text-decoration: none;
}

.footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    color: #fff;
}

.footer .copyrights{
    text-align: center; 
} 

.footer .linkedin {
    position: absolute;
    right: 80px;
    bottom: 0px;
}

.footer .linkedin a {
    text-decoration: none;
    color: #fff;
}

  #landscape-message {
      display:none;
  }

@media only screen and (max-width: 912px) and (orientation: landscape) {
  .content {
    display: none; /* Hide the entire page content in landscape mode */
  }

  #landscape-message {
    display: block;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: white;
    background: black;
        height: 100vh;
  }
}
@media screen and (max-width: 650px) {

    .left-side {
        left: auto;
        position: relative;
        text-align: center;
        margin-top: 30px;
    }

    .logo {
        left: -160px;
    }
    
    .logo img{
        width: 320px;
    }

    .footer .linkedin{
        position: relative;
        text-align: center;
        right: inherit;
        bottom: auto;
    }
}

