/* Importação de fonte moderna */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #333;
}

/* Container para os links */
body > a {
    text-decoration: none;
    background-color: #ffffff;
    color: #2d3436;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 8px;
    font-weight: 600;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #dfe6e9;
}

/* Efeito ao passar o mouse */
body > a:hover {
    background-color: #00b894;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Estilo para o caminho do arquivo (PHP) */
code, php-output {
    margin-top: 30px;
    padding: 10px;
    background: #2d3436;
    color: #fab1a0;
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: 'Courier New', Courier, monospace;
}