body{
    margin: 0;
    padding: 0;
}

h1{
    width: max-content;
    text-wrap: wrap;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 350%;
    margin: 1% auto auto auto;

  
}

p{
    width: max-content;
    text-align: center;
    margin: 0px auto 2px auto;
    padding: auto;
    font-size: 100%;
}

button{
    height: 50px;
    width: auto;
    font-size: 120%;
    background-color: orangered;
    color: black;
   border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
}


#color-container{
    display: flex;
    flex-direction: row;
    flex-flow: center;
    flex-wrap: wrap;
    gap: 50px 50px;
    margin: 4%  auto 50px  auto;
}

.color-square{
    height: 250px;
    min-width: 250px;
    background-color: #ffffff;
    margin: auto;
    text-align: center;
    font-size: 30px;
    border: 2px solid black;
    cursor:pointer;
}

.real-color{

    height: inherit;
    width: inherit;

}

.rgb-text{

    width: max-content;
    text-align: center;
    margin: auto auto;
    padding: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
}



.input-flex{

    display: flex;
    flex-direction: column;
    justify-content:center;
    flex-wrap: wrap;
    height: auto;
    max-width: max-content;
    margin: 5% auto;
    padding: 10px;
    background-color: rgba(211, 211, 211, 0.68);
    border: 3px solid black;
    border-radius: 7px;
    font-weight: bolder;
    
    
}

.input-flex-content{
    max-height: max-content;
    margin: 2% auto;
    font-size: 100%;
  
    
}

#saturation{
    max-width: 90%;
    max-height: 200%;
    cursor: pointer;
}

#background-color{
    cursor: pointer;
}

#reset{
    background-color: green;
    height: 30px;
    border: 2px solid black;
    border-radius: 5px;
    
}






