html {
  font-family: 'Fira Sans', sans-serif;
  font-size: 20px;
  min-height: 100vh;
  color: #d8e9ef;
  background-image: linear-gradient(-20deg, #025159 0%, #733b36 100%);
  background-size: cover;
}

h1 {
  margin: 0 auto 10px auto;
}

p {
  margin: 0;
}

.app-message {
  height: 20px;
  margin: 10px auto 20px auto;
  font-size: 0.9em;
}

.app-container {
  width: 280px;
  height: auto;
  margin: 40px auto;
  text-align: center;
  border-radius: 5px;
  padding: 20px;
}

.timer-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.timer-buttons button {
  flex: 1;
  font-size: 0.8em;
  padding: 5px;
  margin: 0 5px;
  background: none;
  color: #d8e9ef;
  border: 1px solid #d8e9ef;
  border-radius: 3px;
  cursor: pointer;
}

.timer-buttons .active {
  background-color: #d8e9ef;
  color: #025159;
  font-weight: bold;
}

.app-circle {
  position: relative;
  margin-top: 80px;  
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.circle-shape {
  pointer-events: none;
}

.semi-circle {
  position: absolute;
  width: 100px;
  height: 200px;
  box-sizing: border-box;
  border: solid 6px;
}

.left-side {
  top: 0;
  left: 0;
  transform-origin: right center;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-right: none;
  z-index: 1;
}

.right-side {
  top: 0;
  left: 100px;
  transform-origin: left center;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-left: none;
}

.circle {
  border-color: #bf5239;
}

.circle-mask {
  border-color: #e85a71;
}

.app-counter-box {
  font-family: 'Droid Sans Mono', monospace;
  font-size: 250%;
  color: #d8e9ef;
  margin: 0;
}

button {
  font-size: 80%;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  background: none;
  outline: none;
  color: #d8e9ef;
  margin: 10px 5px 0 5px;
  cursor: pointer;
}



button:hover {
  color: #90c0d1;
}

@media screen and (max-width: 400px) {
  html {
    font-size: 16px;
  }
  .app-container {
    width: 90%;
  }
}


.focus-input {
  width: 90%;
  padding: 8px;
  margin: 10px auto 15px auto;
  font-size: 0.9em;
  border-radius: 5px;
  border: 1px solid #d8e9ef;
  background-color: rgba(255, 255, 255, 0.05);
  color: #d8e9ef;
  outline: none;
  display: block;
  text-align: center;
}

.focus-input::placeholder {
  color: #b8cfd4;
}

.timer-buttons {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  flex-wrap: wrap;
}

.app-circle {
  margin-top: 30px; 
}

/* Focus & Custom Inputs */
.focus-input,
.custom-time-input {
  width: 90%;
  padding: 8px;
  margin: 10px auto 10px auto;
  font-size: 0.9em;
  border-radius: 5px;
  border: 1px solid #d8e9ef;
  background-color: rgba(255, 255, 255, 0.05);
  color: #d8e9ef;
  outline: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}

.focus-input:focus,
.custom-time-input:focus {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.focus-input::placeholder,
.custom-time-input::placeholder {
  color: #b8cfd4;
}

/* Transitions & Icon Buttons */
button {
  transition: all 0.2s ease;
}

button:hover {
  transform: scale(1.05);
  color: #90c0d1;
}

h1 i {
  font-size: 0.6em;
  margin-left: 5px;
}
