/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); */
*{
    margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    font-optical-sizing: auto;
    font-style: normal;
    /* font-weight: 600; */
    user-select: none;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    text-decoration: none;
}

html body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    /* background: linear-gradient(45deg, #dee3bb, #7f8665); */
    scroll-behavior: smooth;
}
.container{
    width: 100vw;
    max-width: 415px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: #F7FAFF; */
}

/* task css */
.app-bar{
    width: 100%;
    max-width: 450px;
    height: 55px;
    position: fixed;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff00;
    /* background: linear-gradient(90deg, #606fff, #7a82fc); */
}
.app-bar img{
    width: 26px;
    position: absolute;
    left: 4px;
}
.app-bar p{
    /* color: aliceblue; */
    font-weight: 700;
    font-size: 18px;
}
/* bottom-bar */
.bottom-bar{
    width: 100%;
    max-width: 450px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0px;
    background-color: #ffffff;
}
.bottom-bar a{
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: black;
    font-size: 14px;
}
.bottom-bar a img{
    width: 20px;
}