* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Neue Haas Grotesk Text Pro',
    'Helvetica Neue', Helvetica, Arial, sans-serif;
  user-select: none;
}

.ask-name-wrap {
  display: flex;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ask-name-wrap h2 {
  font-size: 3rem;
}

.apps {
  display: flex;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
}

.top-row,
.bottom-row {
  display: flex;
  height: 60px;
}

.top-row {
  margin-left: auto;
}

.top-row .weather-wrap {
  padding: 10px 20px;
}

.top-row span {
  display: block;
}

.top-row .temp {
  font-size: 26px;
  text-align: right;
}

.top-row .region {
  font-size: 13px;
}

.center-above,
.center-below {
  flex: 1 1 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.center {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

#time {
  display: inline-block;
  font-size: 10.5rem;
  letter-spacing: -5px;
  margin-bottom: -1.2rem;
}

#focus-question {
  font-size: 2rem;
}

.center h1 {
  font-size: 3.4rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
}

.center .side-col {
  flex: 1 0 50px;
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 1.4rem;
  padding-left: 1rem;
}

.center .side-col i {
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.center .side-col i:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.center .dot {
  margin-left: -1rem;
}

#name-edit-input {
  border-bottom: 3px solid #fff;
  outline: none;
}

#author {
  display: block;
  text-align: right;
}

.ask-name-wrap form {
  margin-top: 2rem;
}

input {
  width: 100%;
  height: 60px;
  padding: 0;
  color: #fff;
  font-size: 2.4rem;
  background-color: transparent;
  border: none;
  outline: none;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.hidden {
  display: none;
}

.today-focus-wrap {
  width: 100%;
}

.today-focus-wrap span:first-child {
  display: block;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.today-focus-wrap .today-focus-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
}

.today-focus-wrap .today-focus-text .text {
  white-space: nowrap;
}

i {
  cursor: pointer;
}

.today-focus-text div {
  flex: 1 1 100%;
  font-size: 24px;
  margin-top: 0.5rem;
}

.today-focus-text .check-box-wrap {
  text-align: right;
}

.today-focus-text .focus-del-wrap {
  text-align: left;
}

#check-box {
  margin-right: 1.6rem;
}

#focus-del-btn {
  margin-left: 1rem;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
}

#focus-del-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
