/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




/* global stuff*/

input[type="text"]{
    border: none;
}
img{
    width: 20px;
    height: auto;
}
body{
    background-color: cadetblue;
}



/*head section*/
#headersection{
    display: flex;
    padding: 50px;
    border-bottom: #00000055 2px solid;
    justify-content: space-around;
}


/*task section*/
#tasksection{
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: max-content;
    margin-left: 10%;
    margin-right: auto;
    gap:20px;
}



/* Note thing */
.box{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 25px;
    padding: 20px;
}
.notetask{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.taskmenu{
    display: none;
    margin-bottom:20px;
    margin-top: 5px;
    align-items:end;
}
.col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}