body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 0px;
    background-color: #181818;
    color: #bcaa50;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 5px; /* Further reduced space above the heading */
}

h1 {
    font-size: 2em;
    color: #f0db4f;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 5px; /* Further reduced space between the heading and the first text */
}

.circuit-icon {
    font-size: 1.5em;
    color: #f0db4f;
    margin-top: 5px; /* Further reduced space above the icons */
}

p {
    font-size: 1.2em;
}


.poem {
    margin-top: 20px;
    font-style: italic;
}

.icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icons i {
    font-size: 2.6em; /* Increased by 30% */
    color: #f0db4f;
}

button, .dashboard-button {
    background-color: #f0db4f;
    color: #181818;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Orbitron', sans-serif;
    margin-top: 20px;
    background: linear-gradient(145deg, #f0db4f, #e1c700);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

button:hover, .dashboard-button:hover {
    background-color: #d1b300;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5);
}

.dashboard-button i {
    font-size: 1.2em;
}
