body {
    margin: 0;
    padding: 40px 20px;
    background-color: #f4f7f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.main-title {
    font-family: "Bitcount Grid Double Ink", sans-serif;
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}


.flex-container {
    display: flex;
    flex-wrap: wrap;       
    justify-content: center; 
    align-items: center;     
    gap: 15px;               
    width: 100%;
    max-width: 900px;
    margin-bottom: 40px;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.box {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.box:hover {
    transform: translateY(-5px);
}

.color-1 { background-color: #e74c3c; }
.color-2 { background-color: #2ecc71; }
.color-3 { background-color: #3498db; }
.color-4 { background-color: #9b59b6; }
.color-5 { background-color: #f1c40f; }
.color-6 { background-color: #e67e22; }