body {
    background-color: white;
    background-image: linear-gradient(to right, rgba(0, 0, 255, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 255, 0.3) 1px, transparent 1px);
    background-size: 30px 30px; /* Размер клеток */
}
input[type="button"] {
    color: purple; /* Фиолетовый цвет текста */
    border: 2px solid pink; /* Розовая рамка */
    padding: 10px 15px;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

input[type="button"]:hover {
    background-color: pink;
    color: white;
}