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

body {
	background: url(./assets/income.png.jpeg) no-repeat;
	background-position: top;
	background-size: cover;
	min-height: 100vh;
    background-color: #19A69B;
    
}

main {
	max-width: 800px;
}

header {
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 800px;
	margin: 50px auto;
}

/* .form-control{
    width: 700px;
    padding: 6px;
    outline: none;
    border-radius: 5px;
    border: 1px solid #DEE2E6;
} */

/* table{
    max-width: 800px;
    margin: 1.5rem auto;
    text-align: center;
} */

.fa-trash-can {
	color: red;
	font-size: 1.5rem;
	cursor: pointer;
}

body::-webkit-scrollbar {
	width: 1.3rem; /* width of the entire scrollbar */
}
body::-webkit-scrollbar-track {
	background: #1BA79C; /* color of the tracking area */
}
body::-webkit-scrollbar-thumb {
	background-color:#19A69B; /* color of the scroll thumb */
	border-radius: 20px; /* roundness of the scroll thumb */
	border: 3px solid orange; /* creates padding around scroll thumb */
}

body::-webkit-scrollbar-thumb:hover {background: #C83430;}
