* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #09090A;
    color: white;

    height: 100vh;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    position: fixed;
    width: 100%;
    background-color: #09090A;
}
footer{
    width: 100%;
    height: 30px;
    background-color: #09090A;

}
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';
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
}
#formHabits {
    display: flex;

    padding: 180px 48px 48px;
    width: fit-content;
}
.days {
    display: flex;
    gap: 48px;
    margin-left: 20px;
}
.day {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.day div {
    margin-bottom: 8px;

    font-family: 'Roboto Mono';
    font-weight: 700;
    font-size: 20px;
    line-height: 125%;

    color: #A1A1AA;

    text-align: center;
}
.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;
    line-height: 64px;
}
#createHabit{
    margin: 0px 48px 0px;
}
input {
    appearance: none;
    -webkit-appearance: none;

    width: 64px;
    height: 64px;


    border: 2px solid #27272A;
    border-radius: 8px;
    

    background: #18181B;
}

input:checked {
    background: #8B5CF6;

    border: 2px solid #A78BFA;
    border-radius: 8px;
}

@media (max-width: 570px) {
    #buttonText {
        display: none;
    }
}