html, body {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

img {
  margin-bottom: 30px;
}

button {
  background-color: #88A6ED;
  color: white;
  padding: 15px;
  width: 350px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 10px;
}

button:hover {
  background-color: #5073b4;
}

#view-tasks {
  background-color: transparent;
  color: black;
  border: 2px solid black ;
}

#view-tasks:hover {
  background-color: #5073b4;
  color: #c7c7c7;
}