html,
body {
    margin: 0;
    padding: 0;
    background: rgb(19, 19, 19);
    color: #fff;
    font-family: "Neue Haas Grotesk", sans-serif;
    overflow-x: hidden;
    font-size: 95%;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('fonts/NeueHaasGroteskText-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('fonts/NeueHaasGroteskText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('fonts/NeueHaasGroteskText-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: border-bottom 0.2s ease;
}

a:hover {
    border-bottom: 0.15em solid #ffffff;
    cursor: pointer;
}

::selection {
    background: #00bfff;
    color: #000000;
}

.stack {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.name {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    pointer-events: auto !important;
    cursor: pointer;
}

.name.is-locked {
    position: absolute;
    top: var(--lock-top-position);
    pointer-events: none;
}

.name::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    mask-image: url(img/name2.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    width: 65vw;
    height: 6vw;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
    position: relative;
}

.content img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.infocontainer {
    margin-top: var(--infooffset);
    position: relative;
    padding-bottom: 30vh;
}

.infotext {
    margin-left: 6%;
    margin-right: 6%;
}

.infotext::selection {
    color: #131313;
    background: #00ffb7;
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
}

.two-column .col {
    flex: 1;
    min-width: 300px;
}

.two-column .bio {
    line-height: 1.5;
    font-size: 1rem;
}

.two-column .links {
    line-height: 1.8;
    font-size: 1.1rem;
    padding-left: 3vw;
}

.icon-imdb {
    color: #000 !important;
    background-color: #fff;
    border-radius: 2px;
    padding: 1px;
    filter: none; 
}

/* Desktop Scaling */
@media (min-width: 1000px) {
    .two-column .col.bio,
    .two-column .col.links {
        font-size: clamp(1.2rem, 0.5rem + 1.2vw, 1.6rem);
    }
}

/* Mobile */
@media (max-width: 800px), (max-height: 800px) and (max-width: 600px) {
    .two-column {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .two-column .col {
        width: 100%;
    }
}