body {
    font-family: 'Libre Baskerville', serif;
    background: #f8f9fa;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-message {
    max-width: 600px;
    text-align: center;
    padding: 2em;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #ffffff;
}

.author-name {
    color: #343a40;
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5em;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}