*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    padding: 20px;
    font-size: 20px;
}
.random-color-generator-container{
    display: flex;
    gap: 10px;
}
.hex-color-container .rgb-color-container{
    min-height: 200px;
    flex: 1;
}
.hex-color-container button{
    padding: 12px 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    background-color: rgb(22, 241, 6);
}
.rgb-color-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hex-color-container{
    background-color: green;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.hex-color-value .rgb-color-value{
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.rgb-color-container{
    background-color: red;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rgb-color-container button{
    padding: 12px 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    background-color: rgb(241, 6, 206);
    color: #fff;
}