@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body{
    background-color: #E3F2FD;
}

.container{
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container .color{
    list-style: none;
    margin: 13px;
    padding: 7px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(52, 87, 220, .08);
    transition: transform .3s ease;
}

.container .color:active{
    transform: scale(.95);
}

.color .rect-box {
    width: 185px;
    height: 188px;
    background: #8A6CFF;
    border-radius: 5px;
}

.color:hover .rect-box{
    filter: brightness(106%);
}

.color .hex-value{
    display: block;
    color: #444;
    margin: 12px 0 8px;
    font-size: 1.15rem;
    font-weight: 500;
    text-transform: uppercase;
}

.refresh-btn {
    position: fixed;
    left: 50%;
    bottom: 40px;
    outline: none;
    color: #fff;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 500;
    padding: 12px 20px;
    background-color: #8A6CFF;
    border: 2px solid #fff;
    box-shadow: 0 15px 25px rgba(52, 87, 220, .2);
    transform: translateX(-50%);
}