* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
  color: #11324d;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #a6ddeb;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  height: 100%;
  min-width: 1200px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(16, 1fr);
  position: relative;
}

.how {
  position: absolute;
  width: 30px;
  top: 20px;
  left: 20px;
  cursor: pointer;
}

.logout {
  position: absolute;
  width: 35px;
  bottom: 15px;
  right: 25px;
  cursor: pointer;
  z-index: 100;
  opacity: 0.7;
}

.clock {
  grid-column: 9 / span 4;
  grid-row: 2 / span 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  & h1 {
    font-size: 50px;
  }
  & h2 {
    font-size: 30px;
  }
}

.name {
  height: 80%;
  border-radius: 20px;
  grid-column: -12 / 7;
  grid-row: 2 / 4;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.25);
  background-color: rgb(255, 255, 255);

  & input {
    width: 90%;
    border: none;
    font-size: 17px;
    text-align: center;
    background-color: transparent;
  }
}

.todo {
  background-color: white;
  border-radius: 20px;
  height: 100%;
  aspect-ratio: 1 / 1.4;
  grid-column: -12 / span 2;
  grid-row: 7 / 16;
  place-self: center start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 10px;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.25);

  & input {
    text-align: center;
    border-radius: 10px;
    width: 95%;
    background-color: #f3efef;
    color: #808080;
    padding: 4px;
    border: none;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
  }
}

.todo-list {
  z-index: 100;
  width: 95%;
  height: 100%;
  text-align: center;
  background-color: #f3efef;
  border-radius: 20px;
  padding: 8px;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25);
  overflow: auto;

  & p {
    font-size: 13px;
    margin: 10px;
    border-radius: 10px;
    padding: 3px;
    cursor: pointer;
  }

  & p:hover {
    background-color: white;
  }
}

.timer {
  background-color: #c9e6f0;
  border: 15px double white;
  border-radius: 50%;
  width: 85%;
  aspect-ratio: 1 / 1;
  grid-column: 6/8;
  grid-row: 6/11;
  place-self: center;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.timer:hover {
  background-color: #b9d9e3;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2.5s infinite ease-in-out;
  transition: transform 0.5s ease-in-out;
}

.video {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  height: 90%;
  aspect-ratio: 16 / 9;
  grid-column: 5 / span 4;
  grid-row: 12 / span 4;
  place-self: end center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.25);

  & input {
    border: none;
    text-align: center;
    background-color: transparent;
  }

  & iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
}

.weather {
  border: 3px solid rgb(255, 255, 255, 0.9);
  border-radius: 20px;
  height: 90%;
  aspect-ratio: 16 / 9;
  grid-column: 9 / span 4;
  grid-row: -13 / span 4;
  place-self: end center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c9e6f0;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);

  & section {
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
}

.animation-bear {
  width: 100%;
  aspect-ratio: 1 / 1;
  grid-column: -5 / span 4;
  grid-row: 9 / span 8;
}
