CSS - button com box-shadow
button {
display: grid;
width: 45%;
height: 70px;
padding: 20px 35px;
color: white;
background: #635A58;
margin: 30px 0 20px;
border-radius: 5px;
font-size: 25px;
border: none;
box-shadow: 3px 3px 5px black;
cursor: pointer;
}
button:hover {
background-color: #000000;
transition: 2s;
}