/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #f9f9f9;
    margin: 10px 0;
}

strong {
    font-size: 1.5rem;
    color: #ffda79;
}

/* Buttons */
button {
    font-size: 1rem;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button {
    background-color: #ffda79;
    color: #333;
    font-weight: bold;
}

.copy-button:hover {
    background-color: #ffc34d;
}

.download-button {
    background-color: #4caf50;
    color: white;
    font-weight: bold;
}

.download-button:hover {
    background-color: #45a049;
}

/* Additional Styling */
a {
    text-decoration: none;
}
