body{
  background-color: #f4b41a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.btn{
  padding: 20px 40px;
  background-color: #143d59;
  color: #f4b41a;
  font-size:xx-large;
  font-family: cursive;
  transition: transform 0.3s;
}
.btn:hover{
  background-color: #f4b41a;
  color: #143d59;
  border: 2px solid #143d59;
  cursor: pointer;
  transform: translateY(-10px);
}
