*{
    font-family: Arial, Helvetica, sans-serif;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}
h1{
    margin-bottom: 2rem;
    text-align: center;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.colors{
 display: flex;
 align-items: center;
 justify-content: center;
 flex-wrap: wrap;
 gap: 2.9rem;
}
.colors div{
    background-color: red;
    width: 100px;
    height: 100px;
    margin: 0 .5rem;
    border-radius: 5px;
    box-sizing: 0px 0 10px 10px rgba(0,0,0,0.2);
    transition: .2s;
    position: relative;
}
.colors div:hover{
    transform: scale(1.1);
}

.colors div p{
    position: absolute;
    top: 100px;
}
.container-creation{
    margin-top: 7.5rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

input{
    padding: .8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 120px;
    margin-right: 1rem;
    
}

.generate-button{
    background-color: #774CAF;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    padding: 0.8rem;
    cursor: pointer;
    transform: 0.3s;
    
}
.generate-button:hover{
    background-color: #6b30b8;
}