*{
    font-family: Helvetica;
}
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;
    justify-content:center;
    align-items:center;
}
.colors div{
   
    width: 100px;
    height: 100px;
    margin: 0.5rem;
    border-radius: 5px;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
    position: relative;
}
.colors div:hover{
    transform: scale(1.1);
}
.colors div p{
    position: absolute;
    top: 100px;
}
#generate-button{
    background-color: blueviolet;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 3.5rem;
}
#generate-button:hover{
    background-color: #6b30b8;
}