@font-face {
    font-family: 'Instrument Serif';
    src: url('/fonts/InstrumentSerif-Regular.ttf') format('truetype');
}

body {
    margin: 0;
    background-color: rgb(48, 19, 6);
    color: white;
    font-family: 'Arial', sans-serif;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center;
    height: 100%;
}

.logo {
    position: absolute;
    left: 30px;
    top: 0px;
    width: 100px;
    height: auto;
}

.text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100px; /* Set a specific height */
}

.text-box p {
    text-align: center;
    font-size: 24px; /* Adjust font size as needed */
}

.text-box h1 {
    font-size: 36px; /* Adjust the size for the main title */
    margin: 0; /* Remove default margin */
    text-align: center;
}

.text-box p {
    text-align: center;
    font-size: 18px; /* Smaller font size for the rest of the text */
}


.author-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 50%; /* Set width to 50% of the screen */
    min-width: 30em; /* Minimum width based on character count */
    max-width: 50em; /* Optional: a maximum width to prevent too wide */
    padding: 20px; /* Add some padding for spacing */
    margin: 20px; /* Add margin for spacing from other elements */
    text-align: center; /* Center text in the box */
}

.author-box p {
    font-family: 'Instrument Serif'; /* Use the custom font */
    font-size: 18px; /* Adjust font size as needed */
}

