/* Author  Raivis Rampāns
Created 29.02.2024
Editor Raivis
Modified 29.02.2024 */

body {
    background-color: #d5feff;
}

.container {
    margin-top: 20px;
}

.correct-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.img-fluid {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.centered-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    text-align: center;
}