* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

html,
body {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f5f5f5;
  font-family: "Lato", sans-serif;
}

#app {
  width: 70%;
  min-width: 400px;
  text-align: center;
}

h1 {
  font-family: "Dancing Script", cursive;
  text-align: center;
  margin-bottom: 50px;
  font-size: 45px;
  color: #335c62;
  font-weight: 700;
}

ul {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  margin: 50px;
}

ul li {
  margin-bottom: 10px;
  color: #5c5c5c;
}

ul li a {
  margin-left: 15px;
  color: white;
  cursor: pointer;
  border: 1px solid #7cbe7b;
  border-radius: 5px;
  padding: 0 15px 2px 15px;
  background-color: #7cbe7b;
}

ul li a:hover {
  opacity: 0.8;
}

input,
button {
  font: 400 20px "Lato", sans-serif;
}

input {
  width: 50%;
  height: 40px;
  color: #5c5c5c;
  border: 1px solid #dcdce6;
  border-radius: 8px;
  padding: 0 24px;
  margin-right: 10px;
}

.btn_add {
  width: 10%;
  height: 40px;
  border: 1px solid #dcdce6;
  border-radius: 8px;
  background-color: #59a2ad;
  color: #fff;
  cursor: pointer;
}

.btn_add:hover {
  opacity: 0.9;
}
