body
{
    background-size: auto 100%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: rgb(0, 0, 0);
    background-color: black;
    margin: 0;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
}

.floating-image {
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 1080px; 
    height: auto; 
    z-index: -1; /* ensures the image stays behind other content */
}

.footer-links 
{
  margin-top: auto;          /* pushes links to the bottom */
  padding: 20px 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a 
{
  color: white;
  text-decoration: none;
  font-family: monospace;
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover 
{
  opacity: 1;
}

.floating-frame 
{ 
    position: fixed; 
    top: 58%; 
    left: 53.5%; 
    width: 195px; 
    height: 150px; 
    border: none;
    transform: translate(-50%, -50%); 
}
