*{
	margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    place-items: center;
}

.cards{
      width:250px;
      height:450px;
     background-color: whitesmoke;
     border-radius: 30px;
     margin:auto;
     box-shadow: 2px 2px 10px gray;
     overflow: hidden;
     position:relative;
      
}
.cards:hover{
      box-shadow: 5px 5px 20px dimgray;
}

h4{
      color: blue;
      font-family: monospace;
}

h4:hover{
      color:firebrick;
      font-family: monospace;
}

h3{
      color: black;
      font-family: monospace;
}
 
.images img{
	width: 100%;
      height: 70%;
      border-top-left-radius: 30px;
      border-top-right-radius: 30px;
}

.desc{
	text-align: center;
}

button{
      margin-top: 20px;
      margin-bottom: 20px; 
      background-color: whitesmoke;
      border: 1px solid black;
      padding: 8px 50px 8px 50px;
      border-radius: 19px;
      cursor: pointer;
      font-family:;
      font-size:20px;
      text-align: center;
}
button:hover{
      background:#114f79;
      color: white;
      cursor: pointer;
      transition: 0.5s;
}

