@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

* {
  font-family: "Quicksand", sans-serif;
}

body {
  background-color: #5ce4ca;
}

.box {
  background-color: #003d31;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 2px;
  outline: none;
  padding: 10px 16px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: 0px 5px 10px 0px rgba(255, 255, 255, 0.1);
}

.textBox {
  text-align: center;
}

.box:hover {
  background-color: #f082ac;
}

.container {
  position: relative;
  width: 80%;
  height: 100vh;
  margin: auto;
}
