@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Raleway:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 18px;
}
.container {
  box-shadow: 5px 5px 5px 2px rgb(220, 206, 206);
  border-radius: 20px;
  padding: 20px 50px;
}
h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.app {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

p {
  padding: 5px;
}

.btn {
    border: transparent;
    border-bottom: 1px solid black;
    background-color: white;
    margin-left: 180px;
}

.btn:hover {
    cursor:grab;
    color: rgb(23, 99, 142);
    border-bottom: 1px solid rgb(23, 99, 142);
}