*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Inter', sans-serif;
}

body{
    background-color: black;
    color:white;
    height:100vh;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:48px;
    position: fixed;
    width:100%;
    background-color: black;
}
#form-habits{
    display:flex;
    padding: 182px 48px 48px;
    width:fit-content;
}

.habits{
    margin-top: 60px;
    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;
    color:#c0c00a;
    text-align: center;
}
.day div{
    margin-bottom:8px;
    font-family: "Roboto Mono";
    font-size: 20px;
    line-height: 125%;
}
input{
    appearance: none;
    -webkit-appearance: none;
    width:64px;
    height:64px;
    border:2px solid rgb(70, 64, 64);
    border-radius: 8px;
    background: #18181b;
}

input:checked{
    background: #c0c00a;
    border:2px solid #18181b;
}

button{
    padding:16px 24px;
    border-radius:8px;
    border: 2px solid #c0c00a;
    background-color: transparent;
    color: white;
    display:flex;
    gap:12px;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
}
@media(max-width:570px){
    button div{
        display:none;
    }
}
