@font-face {
    font-family: 'Horst Blackletter';
    src: url('HorstBlackletter.ttf') format('truetype');
}

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #d0d0d0;
    overflow-x: hidden;
}

body {
    background-color: #000000; /* Fallback color */
}

#scene-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: transparent; /* Add this to help verify the canvas is rendering */
}

.content {
    height: 100vh;
    position: relative;
}

#sliding-name {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-family: 'Horst Blackletter', cursive;
    color: #c0c0c0;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),    /* Darker shadow */
        0 0 1px rgba(0,0,0,0.9);         /* Sharp outline */
    transition: top 0.3s ease-out, opacity 1s ease-in;
    opacity: 1;
    z-index: 1;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


#sliding-name a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.5s ease-in-out;
    transform-origin: center;
}

#sliding-name a.flipped {
    transform: scaleX(-1);

}

.placeholder-content {
    padding: 20px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    letter-spacing: 2px;
    line-height: 1.5;
    min-height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 50vh;
}

.placeholder-content p:first-child {
    color: #d0d0d0; /* Keep the first line visible */
}

.placeholder-content p:nth-child(2),
.placeholder-content p:nth-child(3) {
    color: #000000; /* Make the second and third lines black (invisible) */
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    padding: 10px 20px;
    box-sizing: border-box;
}