* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

.hide {
  display: none !important;
}

main {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.main-content {
  width: 50%;
  height: 70%;

  background-color: darkblue;
  border-radius: 30px;
  color: white;

  margin: 50px;
  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 50px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.message {
  display: flex;
  justify-content: center;

  gap: 30px;
}
.send-message-button {
  background-color: white;
  color: black;
  padding: 10px;
  cursor: pointer;
  transition: 0.2s ease;
}
.send-message-button:hover {
  background-color: rgb(201, 201, 201);
}

.task-menu {
  width: 100%;
  height: 50%;
}

.list-of-tasks {
  width: 100% - 40px;
  height: 100%;
  background-color: white;
  color: black;
  padding: 40px;
  overflow-x: auto;
  overflow-y: scroll;
  border-radius: 15px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.task {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.delete-button {
  width: fit-content;
  padding: 10px;
  background-color: red;
  color: white;
  cursor: pointer;

  transition: 0.2s ease;
}

.delete-button:hover {
  background-color: rgb(163, 0, 0);
}

