body{
    background-color: whitesmoke;
    color: dimgrey;
    margin: 0;
    font-family: 'fira code', monospace;
    font-size: 1rem;



}



header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid dimgrey;
    position: sticky;
    top: 0;
    background-color: white;
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 1.5rem;

}

div.brand{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;



}

div.nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 30px;


}

img.logo{
    height: 3rem;
    width: 3rem;
    padding: 0;
    margin: 0;
    object-fit: contain;
}

main{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

div.left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    font-size: 2rem;
}
div.controls{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

button{
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 10px;
    border: 2px solid dimgrey;
    background-color: whitesmoke;
    font-size: 1rem;
    cursor: pointer;

}
button:hover{
    background-color: dimgrey;
    color: white;
}
div.saturation {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    background-color: dimgrey;
    border: none;
    padding: 0;
    margin: 0;
    height: 2.5rem;
    width: 14.4rem;
    border-radius: 10px;
}

.increasing{
    background-color: dimgrey;
    color: whitesmoke;

}

.sat{
    padding: 0.5rem;
    border: 2px solid dimgrey;
    border-radius: 10px;
    font-family: 'fira code', monospace;


}



p.saturation{
    margin: 0;
    padding-top: 0.5rem;
    font-size: 2rem;
}


div.right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;

}

div.container{
    display: flex;
    flex-wrap: wrap;
    height: 600px;
    width: 650px;
    gap: 0;
    background-color: whitesmoke;
}


.box{
    box-sizing: border-box;
    height:150px;
    width:150px;
    border: 1px solid black;
    background-color: whitesmoke;
    opacity: 0.05;

}
input{
    height: 60px;
    width: 100px;
    font-size: 2rem;
    text-align: center;
    border: none;
    border-bottom: 2px solid dimgrey;
    background-color: whitesmoke;

 }

p.intro{
    margin: 0;
    font-size: 1.5rem;
}
p.title{
    font-size: 3rem;
    font-family: "Bradley Hand", cursive;
}
div.text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 70%;
    margin: 0;
    padding: 0;

    line-height: 1.5;


}