/* if you wish to try and style with many style sheets, use the import at-rule */
@import url(base.css);

@font-face {
  font-family: Louis;
  src: url(../../../fonts/louis_george_caf/Louis\ George\ Cafe.ttf);
}

body {
  font-family: Louis !important;
  font-size: 20px;
}

header,
main {
  max-width: 1200px;
  position: relative;
  margin: 0px auto;
}

#login {
  text-align: center;
  background-color: #fbefe4;
  padding: 5px 0px 20px 0px;
  border-radius: 30px;
}

input {
  border-radius: 10px;
  font-size: 20px;
  border: none;
  padding: 5px 20px 5px 20px;
  font-family: Louis !important;
}

button {
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  padding: 5px 20px 5px 20px;
  transition: 0.3s ease-in-out;
  background-color: #ff9f74;
  font-family: Louis !important;
  color: white;
}

button:hover {
  background-color: white;
  color: #ff9f74;
}

header h1 {
  text-align: center;
  padding: 50px;
  font-size: 60px;
}

main h2 {
  text-align: center;
  padding: 20px;
}

.show {
  display: initial;
}
.hide {
  display: none;
}

/*when I put display grid, it appears in the login */
/* #task-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
} */

.single-response div {
  padding: 20px 40px 20px 40px;
  border-radius: 30px;
  margin: 5px;
  /* max-width: 800px; */
}

#task-list div,
#task-recent div {
  border: 2px solid #ff9f74;
}

#tasks-shared div {
  border: 2px solid #ff95b7;
}

#sharedtome div {
  border: 2px solid #ffc853;
}

/* ul {
  list-style-type: disc;
} */

#add {
  background-color: #fbefe4;
  padding: 5px 0px 20px 0px;
  border-radius: 30px;
}

#task-form {
  text-align: center;
}

img {
  width: 15px;
  transition: transform 0.5s;
}

img:hover {
  transform: scale(1.5);
}

/* #share-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
} */

#sharetask {
  background-color: #ffdee8;
  padding: 5px 0px 20px 0px;
  border-radius: 30px;
  /* color: #ff95b7; */
}

#share-task,
#share-user {
  font-family: Louis !important;
}

#task-share-form {
  text-align: center;
}

#task-share-form select {
  border-radius: 10px;
  font-size: 20px;
  border: none;
  padding: 5px 20px 5px 20px;
  font-family: Louis !important;
}

#task-share-form button {
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  padding: 5px 20px 5px 20px;
  transition: 0.3s ease-in-out;
  color: white;
  background-color: #ff95b7;
}

#task-share-form button:hover {
  background-color: white;
  color: #ff95b7;
}

#shared {
  background-color: #ffdee8;
  padding: 5px 0px 20px 0px;
  border-radius: 30px;
  /* color: #ff95b7; */
}

#sharedtome {
  background-color: #ffe9b9;
  padding: 5px 0px 20px 0px;
  border-radius: 30px;
  /* color: #ffc853; */
}
