@import url(reset.css);
@import url(vars.css);
@import url(colors.css);
@import url(utils.css);



#container {
    min-width: 900px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}


header {
    display: flex;
    justify-content: space-between;
}

header h1 {
    font-size: var(--h1-size);
    margin-bottom: 1rem;
}

header h2 {
    font-size: var(--h2-size);
}

header picture {
    max-width: 280px;
}

main h2 {
    font-size: var(--h2-size);
}

main h3 {
    font-size: var(--h3-size);
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 5rem;
}

.todo, .auftrag {
    margin-top: 1rem;
    padding: 0.5rem;
    border: 1px solid gray;
}

.full {
    margin-top: 2rem;
    padding: 0.5rem 0;
}



/* Text-Area*/

#work_todo {
    width: 100%;
    height: 8rem;
    font-size: 1.2rem;
    border: 1px solid lightgrey;
    resize: none;
    outline: none;

}

.notebook {
    border-bottom: 1px solid lightgrey;
    line-height: 2;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

#attachments {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

#attachments img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
