* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Libre Baskerville', serif;
    flex-direction: column;
    gap: 2rem;
}

h1 {
    color: #ffffff;
    font-size: 5rem;
    font-weight: 400;
}

button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-family: 'Libre Baskerville', serif;
    background-color: #ffffff;
    color: #000000;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}
