* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #09090a;
  color: white;
  height: 100vh;
}

button {
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid #8b5cf6;
  background-color: transparent;
  color: white;
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  gap: 12px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  position: fixed;
  width: 100%;
}

input {
  appearance: none;
  -webkit-appearance: none;
  width: 64px;
  height: 64px;
  border: 2px solid #27272a;
  border-radius: 8px;
  background: #181818;
}

input:checked {
  background: #8b5cf6;
  border: 2px solid #a78bfa;
}

form {
  display: flex;
  padding: 182px 48px 48px;
  width: fit-content;
}
.days {
  display: flex;
  margin-left: 32px;
  gap: 48px;
}

.day {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.habits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 50px;
}

.habit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 32px;
}

.day div {
  margin-bottom: 8 px;
  font-family: "Roboto Mono";
  font-size: 20px;
  line-height: 125%;
}

@media (max-width: 570px) {
  button div {
    display: none;
  }
}
