body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    background: url('/lines-alpha-anim.gif') repeat;
    color: #fff;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header {
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

marquee {
    color: #fff;
    font-size: 18px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    position: relative;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #fff;
    background-color: #333;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #555;
}

#video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: auto;
    clip-path: inset(0 12%);
}

#clock {
    position: fixed;
    top: 270px;
    left: 600px;
    color: #fff;
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace;
    z-index: 1000;
}

#custom-gif {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 150px;
    height: auto;
    z-index: 10;
}

.tooltip {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.7); 
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    z-index: 1000;
}


/*
//music player stuff
#music-player-container {
    display: flex;
    align-items: center;
    position: absolute;
    right: -230px;
}

#music-player-container button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin: 0 5px;
    transition: color 0.3s;
}

#music-player-container button:hover {
    color: #aaa;
}


#track-name {
    font-size: 12px;
    margin-right: 10px;
    white-space: normal;
}

audio{
  visibility: hidden;
}

//old gif stuff
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.floating-image {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 5000;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fixed-gif {
    position: fixed;
    width: auto;
    height: auto;
    z-index: 1000;
}

#gif1 {
    top: 97px;
    left: 0;
}

#gif2 {
    top: 97px;
    right: 0;
}

#gif3 {
    bottom: 30px;
    left: 30px;
}

#gif4 {
    transform: scale(0.8);
    bottom: 0;
    right: 0;
}
*/


