@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
    
}

.flex-container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-container{
    text-align: center;
    padding: 1rem;
    border-radius: 20px;
    background-color: #fff;
}

.heading{
    font-size: 3.5rem;
}

#color{
    width: 40%;
    margin: 1.2rem 0;
    cursor: pointer;
}

.code label{
    font-size: 1.2rem;
    font-weight: 500;
} 

.code input{
    text-align: center;
    font-size: 1rem;
    padding: 0.3rem;
    border: 2px solid #000;
    border-radius: 40px;
    margin: 0.2rem 0 1rem ;
    cursor: pointer;
    transition: 0.3s;
}

.code input:hover{
    background-color: #000;
    color: #fff;
    transform: scale(1.02);
}

.copyright{
    margin-top: 1.5rem;
}