html, body {
    height: 100%;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    padding: 20px;
    max-width: 1200px;
    width: 80%;
    margin: 50px auto;
    text-align: center;
    color: #f4f4f5;
    text-shadow: black 0px 0px 5px;
}

.color-container {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 100px);
    gap: 10px;
    justify-content: center;
}

.box {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border: solid 2px black;
}

.box:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

#yellow {
    background-color: yellow;
}

#white {
    background-color: white;
}

#grey {
    background-color: grey;
}

#blue {
    background-color: blue;
}