body{
    background-color: #ffcccc;
}
.section {
    margin: 30px auto;
    max-width: 600px;
    width: 90%;
    display: block;
}

h1,h2,p,a,.div-center{
    text-align: center;
}

button {
    padding: 14px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    background: #0078ff;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

button:hover {
    background: #005fcc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}