main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 5px 350px 5px 350px; 
}

main section {

    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 28px -6px #ff9966b0;
    padding: 32px 24px 18px 24px;
    margin: 0 0 40px 0;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
}

main section:hover {
    box-shadow: 0 20px 36px -2px #ff9966c0;
    transform: translateY(-4px) scale(1.03);
}

main section h2 {
    color: #ff7f50;
    font-family: "Monotype Corsiva", cursive, sans-serif;
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 24px;
}
