body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.logo {
    display: block;
    justify-content: center;
    align-items:start;
    height: 100vh; /* Full viewport height */
  }


.video-header {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen */
    overflow: hidden;
    margin: 0;
}
.video-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}
.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgb(0, 0, 0);
    top: 49.9%;
    transform: translateY(-50%);
    z-index: 5;
}

h1{
    padding-top: 10%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1cap;
    line-height: 150%;
    opacity: 0;
    transform: translateX(-400px);
    animation: fadeSlideIn 3s forwards;
}
@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}