body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 2rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

main p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}


.tools a {
    text-decoration: none;
    color: #bb86fc;
    font-size: 1.2rem;
    padding: 0.5rem 0.5rem;
    border: 1px solid #bb86fc;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    width: 20rem;
    box-sizing: border-box;
}

.tools a:hover {
    background-color: #bb86fc;
    color: #121212;
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #a0a0a0;
} 

