
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #d7b0df;
    background-color: #f8f9fa;
    text-align: center;
}


header {
    background-color: #fa80c7;
    color: white;
    padding: 20px;
    font-size: 24px;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}


.box {
    flex-basis: 300px;
    flex-grow: 1;
    flex-shrink: 1;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}



.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

