/* Загальні стилі */
body {
    margin: 0;
    padding: 0;
    font-family: "Comic Sans MS", "Poppins", sans-serif;
    background: linear-gradient(#ffd6e8, #ffeef6);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #ff66a3;
}

/* Блок з рахунком */
.wrapper {
    background: #fff0f7;
    padding: 15px 25px;
    border: 3px solid #ff99c8;
    border-radius: 20px;
    box-shadow: 0 0 10px #ffb3d9;
}

.wrapper p {
    margin: 5px 0;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #ffffff;
}

/* Canvas контейнер */
.canvas {
    background: #ffe4f2;
    padding: 15px;
    border-radius: 25px;
    border: 4px dashed #ff99c8;
    box-shadow: 0 0 15px #ffb3d9;
}

/* Сам canvas */
#canvas {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 15px #ffccd9 inset;
}

/* Кнопки */
.control .btn {
    background-color: #ff8ec9;
    border: none;
    border-radius: 25px;
    padding: 12px 28px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 0 #e069a6;
    transition: 0.15s;
}

.control .btn:hover {
    background-color: #ffa2d6;
}

.control .btn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #e069a6;
}

/* Вирівнювання */
.canvas, .control {
    display: flex;
    justify-content: center;
    width: 100%;
}
