
button {
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    margin: 8px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
}

button:hover {
    transform: scale(1.1);
    opacity: 0.9;
}


