*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 400px;
    height: 400px;
}

#color-display{
    font-size: 30px;
    letter-spacing: 2.5px;
    background-color: #ffffff36;
    padding: 10px 15px;
    box-shadow: 0px 0px 5px #000;
}


.controls{
    display: flex;
    gap: 15px;
}

.img{
    width: 350px;
    height: 450px;
    border: 3px solid #fff;
    margin: 15px;
}

img{
    width: 100%;
    height: 100%;
}

button{
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid gray;
    transition: 300ms all;
    cursor: pointer;
}

button:hover{
    opacity: 0.7;
}