body {
    padding: 40px;
    background: whitesmoke;
    text-align: center;
}

#apple-shelf {
    background: lightcoral;
    border-radius: 10px;
    height: 10rem;
    margin: 10px 0px;
    font-size: 2rem;
}

#orange-shelf {
    background: lightsalmon;
    border-radius: 10px;
    height: 10rem;
    margin-top: 2rem;
    font-size: 2rem;
}

#btn{
    font-size: 1.4rem;
    font-weight: bold;
    border: none;
    background-color: #efa986;
    color: rgb(239, 23, 23);
    border-radius: 0.8rem;
    padding: 0.7rem 1.4rem;
    box-shadow: inset 1px 1px 2px rgb(91, 2, 2), -2px 3px 3px rgb(22, 1, 5);
    text-shadow: 2px 1px 1px rgb(100, 65, 6);
    margin-top: 5rem;
     transition: all 0.3s linear;
}


#btn:hover{
    background: #efa079;
    transform: translate(2px,2px);
   transition: all 0.2s linear ;
  
}

#btn:active{
    transform: scale(0.9);
}

#fruit-shelf{
    font-size: 2rem;
    max-width: 70%;
    padding-left: 8em;
    text-align: center;
}