html, body {
    margin: 2vh auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    font-size: 62.5%;
}
h1{
    margin: 10px auto;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
}

#container{
    width: 550px;
    height: 500px;
    display: flex;
    flex-direction: column;
}

#colorInformation{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 90px;
    background-color: rgb(129, 179, 198);
}

select{
    width: 320px;
    height: 42px;
    padding: 10px;
    border: none;
    outline: none;
}

input[type=color]{
    width: 61px;
    height: 42px;
    padding: 0;
    border: none;
    outline: none;
}

option{
    padding: 200px;
    margin: 10px;
}

button{
    font-size: 12px;
    width: 123px;
    height: 42px;
    border: none;
    outline: none;
    color:rgb(79, 146, 172) ;
    font-weight: bold;
}

#schemeContainer{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 414px;
}

.schemeColor{
    width: 550px;
    height: 100%;
    flex-direction: row;
}

.schemeName{
    font-weight: bold; 
    margin: auto;
    font-size: 1.5rem;
}


#schemeInformation{
    display: flex;
    justify-content:  space-around;
    height: 56px;
    width: 550px;
    background-color: lightgray;
}


