@font-face {
    font-family: 'levi';
    src: url('../../src/font/classic.ttf') format('truetype');
    /* Add other font formats if available (e.g., woff, woff2) for better browser compatibility */
    /* You might include font-weight and font-style declarations for different font variations */
  }

body { 
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
/* staff.css */

/* Center the image */
.Staffs {
    transform: scale(0.7); 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust this if needed 
    /* staff.css */



    display: block;
    margin-bottom: 20px; /* Adjust as needed for spacing between entries */

}

/* Yellow border for the image */
.Staffs img {
    padding: 6px;
    border: 2px solid yellow;
    display: block;
    margin: 0 auto;
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    max-height: 100%; /* Ensure the image doesn't exceed its container */
}




/* Quote container */
.quote-container {
    font-size: 35px;
    color: white;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    text-align: center; /* Center the text */
}


/* Attribution style */
.attribution {
    display: block;
    margin-top: 10px;
    text-align: right;
    margin-left: 80%; /* Adjust the margin to shift it more to the right */
    transform: translateX(-50%);
    white-space: nowrap; /* Prevents the text from wrapping */
}

.additional-info {
    font-size: 25px;
    color: #888; /* Gray color */
    margin-top: 5px; /* Adjust as needed */
    text-align: right; /* Align to the right */
    position: absolute;
    left: 100%; /* Position at the far right relative to attribution */
    top: calc(80%); /* Position below the attribution with 10px space */
    transform: translateX(-24%); /* Move back by its own width */
    white-space: nowrap; /* Prevents the text from wrapping */
}
.back-button {
    font-family: 'levi';
    position: fixed;
    top: 20px;
    left: 20px;
    color: yellow;
    text-decoration: none;
    font-size: 18px;
    z-index: 9999; /* Ensures it's above other elements */
}

.content {
    padding-top: 40px; /* To ensure content doesn't get hidden behind the button */
}