body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 20px;
}
.header {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0056b3;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.exercise-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #0056b3;
}
.exercise-content {
    margin-top: 10px;
    padding: 20px;
    background-color: #eef7ff;
    border: 1px solid #007bff;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #333;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative; /* Relative positioning to place the button correctly */
}
.buttons {
    margin-top: 20px;
}
button, a {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    margin: 5px 10px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}
button:hover, a:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.font-buttons {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.font-buttons button {
    background-color: #007bff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    color: white;
    cursor: pointer;
}

.font-buttons button:hover {
    background-color: #0056b3;
}

#link1 {
    background-color: green; /* Πράσινο χρώμα φόντου για το πρώτο button */
}

#link2 {
    background-color: orange; /* Πορτοκαλί χρώμα φόντου για το δεύτερο button */
}

#link1:hover {
    background-color: darkgreen; /* Σκοτεινότερο πράσινο στο hover */
}

#link2:hover {
    background-color: darkorange; /* Σκοτεινότερο πορτοκαλί στο hover */
}

.copy-button {
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #007bff;
    position: absolute; /* Position button at the right */
    right: 20px; /* Align the button to the right */
    top: 20px; /* Keep some space from the top */
}

.copy-button:hover {
    color: #0056b3;
}