body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    height: 100px;
    background-color: #333;
    background: var(--yellow); 
    color: black; 
    text-align: center;
    padding-top: 20px;
}

#palces {
    display: flex;
    flex-wrap: wrap;    
    margin-bottom: 10px;
}

/* uj dolgok */
:root { --red: #e4584b; --yellow: #ffd821; }


.placeItem {
    width: 300px;
    height: 100px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    padding: 20px;
    border: 1px solid #000000;
    background-color: #e09627;
    border-radius: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
}