html, body {
    overflow: hidden;
    padding: 0;
    margin: 0;
}
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
     z-index: 1;
}
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}
.initials {
    display: flex;
    align-items: center;
    justify-content: last baseline;
}
.portrait {
    flex-basis: 1vw;
    width: 11vw;
    border-radius: 0%;
    border: 1vw solid black;
}
.nametag {
    font-family: outfit_black;
    font-size: 8vw;
    line-height: 84%;
    color: #F2EBDC;
    /*background: -webkit-linear-gradient(#56ABF0, #27376B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}
.contact {
    font-family: outfit_medium;
    font-size: 6vw;
    line-height: 90%;
    color: #F2EBDC;
}
@font-face {
    font-family: outfit_black;
    src: url(Outfit-Black.ttf);
}
@font-face {
    font-family: outfit_medium;
    src: url(Outfit-Medium.ttf);
}
.overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (max-aspect-ratio: 1/1) {
    .overlay {
        left: 50%;
        width: 90%;
        max-width: 90%;
    }
}

@media (max-aspect-ratio: 3/5) {
    .overlay {
        width: 50%;
        left: 30%;
        font-size: 6vh;
    }
}