@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,500;0,700;1,300&display=swap');

body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: ubuntu , Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  background-color:  rgb(252 237 225);
}

header {
  color: dimgray;
  padding: 5px;
  margin-bottom: 30px;
}

.main {
  display: flex;
  flex-direction: row-reverse;
}

.Entradas {
  color: dimgray;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.forms {
  width: 300px;
  margin: 0 2em;
}

.form input {
  border: none;
}

.forms .form {
  display: flex;
  flex-direction: column;
}

.forms .form .todo {
  display: flex;
  flex-direction: column;
  padding: 3px;
}

.forms .form .todo label {
  padding: 3px;
}

.forms .form .initialHour{
  width: 130px;
  display: flex;
  flex-direction: column;
  padding: 3px;
}

.forms .form .initialHour label {
  padding: 3px;
}

.forms .form .finalHour {
  width: 130px;
  display: flex;
  flex-direction: column;
  padding: 3px;
}

.forms .form .finalHour label {
  padding: 3px;
}

.forms .form #createSchedule {
  display: flex;
  justify-content: flex-end;
}

.forms .form #createSchedule img {
  width: 35px;
}

.textarea {
  margin-top: 10px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
}

.textarea form {
  display: flex;
  flex-direction: column;
}

.textarea input[id='submit'] {
  border: none;
  color: dimgray;
  background: rgb(252, 185, 40);
  font-size: medium;
  font-family: 'Ubuntu';
  padding: 2px;
  border-radius: 15px;
}

.textarea textarea {
  padding: 5px;
  border: none;
  margin: 5px 0 5px 0;
  border-radius: 15px;
}

#dayOfWeek {
  font-size: 30px;
  color: rgb(252, 185, 40);
}

#day {
  border-radius: 20%;
  width: 50px;
  font-size: 35px;
  color:  antiquewhite;
  background:rgb(252, 185, 40);
}

#mouth {
  color: rgb(252, 185, 40);
}

#year {
  color: rgb(252, 185, 40);
}

.hands.hr {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
}
.hands.mn {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
}

.hands.sc {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
}

.visuais {
  margin: 2em 2em;
  display: flex;
  flex-direction: row-reverse;
}

.watch {
  margin: 2em 2em;
  width: 270px;
  height: 263px;
  border-radius: 48% 48% 5% 48%;
  background: rgb(255, 255, 255);
  box-shadow: 7px 7px 4px rgba(252, 185, 40, 0.77);
}

.watch .digitalClock {
  font-size: 24px;
  margin-top: -32px;
  display: flex;
  justify-content: flex-end;
  padding: 2px 5px;
  color:  rgb(252, 185, 40);
}

.clockAndSvg {
  justify-content: center;
  border: solid 2px rgb(252, 185, 40);
  border-radius: 48% 48% 5% 48%;
  padding: 5px;
}

.clock {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  background: url(../images/background_clock.svg) center no-repeat;
}

.date {
  position: absolute;
  text-align: center;
  color: antiquewhite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  background: rgb(245, 245, 245);
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 1px 2px 15px rgba(252, 185, 40, 0.77);
}

.lists {
  min-width: 430px;
}

ol {
  min-width: 320px;
}

li {
  background-color: rgb(244, 244, 244);
  margin: 2px;
  font-size: medium;
  color: dimgray;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

li .schedule {
  padding: 4px;
  border-radius: 12px 0 0 0;
}

li .task {
  padding: 2px;
  font-size: small;
  margin-left: 3px;
  width: 200px;

}

.close {
  padding: 1px;
  margin-left: 5px;
  height: 20px;
  width: 20px;
  content: url(../images/close-circle.svg) ;
}

.deleteAllSchedules {
  color: dimgray;
  padding: 3px;
  flex-direction: row;
  display: flex;
  align-items: center;
}
.deleteAllSchedules span {
  margin-left: auto;
  padding: 3px;
  flex-direction: row;
  display: flex;
  align-items: center;
}

.deleteAllSchedules span img {
  margin-left: 3px;
}

.visible {
  visibility: hidden;
}


@media (max-width: 760px) {

  .visuais {
    margin: 2em 2em;
    display: flex;
    flex-direction: column-reverse;
}

}

@media (max-width: 415px) {
  .main {
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
}

.lists {
  min-width: 350px;
}

.form input {
  height: 32px;
  border: none;
}

.watch {
  margin: 0 2em 2em;
}

header {
  margin-left: auto;
}

}
