* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  transform: scale(0.97);
}
body {
  background-color: #09090a;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  position: fixed;
  width: 100%;
}
button {
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid #8b5cf6;
  color: white;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
}
header  :hover {
  
  
  cursor: pointer;
 
}
#form-Habits {
  padding: 182px 48px 48px;
  display: flex;
  width: fit-content;

  margin: 0;
}
.Habits {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.habit {
  width: 64px;
  height: 64px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.days {
  display: flex;
  gap: 48px;
  margin-left: 32px;
}
.day {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.day div {
  margin-bottom: 8px;
  font-family: "Roboto Mono", monospace;
  font-size: 20px;
  line-height: 125%;
  color: #a1a1aa;
  text-align: center;
}
input {
  appearance: none;
  -webkit-appearance: none;
  width: 64px;
  height: 64px;
  border: 2px solid #27272a;
  border-radius: 8px;
}
input:checked {
  background: #8b5cf6;
  border: 2px solid #a78bfa;
}
#footer {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  margin-bottom: 60px;
}

#social-links {
  margin: 0;

  display: flex;
  padding: 24px 0;
  font-size: 24px;
  justify-content: center;
}
#social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 50%;
}
@media (max-width: 570px) {
  button div {
    display: none;
  }
}
