:root {

    --bg-color-dark: #353535;
    /* transparencia */
    --bg-color-accent: #35353580;
    --bg-color-light: #ffffff;
    --bg-color-gray: #ced4da;

    --font-color-dark: #353535;
    --font-color-light: #ffffff;
    --font-color-accept: #43aa8b;
    --font-color-cancel: #ced4da;
    --font-color-delete: #ef233c;
    --font-color-done: #007ea7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--font-color-dark);
    background-color: var(--bg-color-gray);
    position: relative;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    height: auto;
    padding: 2rem;
    border-bottom: 1px solid var(--bg-color-dark);
    background-color: var(--bg-color-light);
}

.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
}

@media (min-width: 576px) {
    .header {
        flex-direction: row;
        gap: 2rem;
    }

    .title-container {
        max-width: 800px;
        flex: 1 0 auto;
    }

    .button-container {
        flex-direction: row-reverse;
        align-self: self-end;
    }
}

/* titulo de seccion + grupo de notas */
.notes {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    min-height: 60vh;
    padding: 2rem;
    background-color: var(--bg-color-light);
}

/* grupo de notas */
.note-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding-bottom: 8rem;
}

@media (min-width: 576px) {

    .note-container {
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
        gap: 1rem;
    }

}

.footer {
    width: 100%;
    max-width: 1200px;
    min-height: 20vh;
    align-items: start;
    gap: 1rem;
    padding: 2rem;
    color: var(--bg-color-light);
    background-color: var(--bg-color-dark);
}

.footer__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.footer__divider {
    width: 100px;
    border-bottom: 2px solid var(--bg-color-light);
}