@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");

*,
::before,
::after {
	margin: 0;
	box-sizing: border-box;
}

:root {
	--header-height: 80px;
}

ul {
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--text-color);
}

body {
	font-family: "Poppins", sans-serif;

	color: #005057;
	font-weight: bold;
}

header {
	position: fixed;
	top: 0;
	left: 0;

	width: 100vw;
	height: var(--header-height);

	display: flex;
	justify-content: space-around;
	flex-direction: column;

	padding: 0 15px;

	background-color: #005057;
	color: #fff;
}

.home {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	/* transform: translateY(var(--header-height)); */
	margin-top: var(--header-height);
}

.home-content {
	background-color: #005057;
	width: 100vw;
	display: flex;
}

.home-saldo {
	background-color: #fff;
	border-radius: 20px;
	width: 97%;
	padding: 15px 20px;
	margin: 15px;

	display: flex;
	flex-direction: column;
	gap: 5px;

	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sottotitolo {
	color: #709492;
	font-size: 10px;
}

.saldo {
	font-size: 25px;
	padding-top: 7px;
}

.iban {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.iban img {
	width: 20px;
}

.movimento {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0, 80, 87, 0.5);
}

.data {
	color: #707070;
	text-align: center;
}

.data p {
	font-size: 10px;
}

.descrizione {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	font-size: 15px;
	gap: 7px;
}

.movimento .sottotitolo {
	color: #363636;
}

.movimenti-button {
	width: 100%;
	background-color: transparent;
	color: rgb(181, 81, 0);
	border: 3px solid rgb(181, 81, 0);
	font-size: 18px;
	padding: 10px;
	border-radius: 10px;
	margin-top: 15px;
}

.navbar {
	width: 100vw;
	height: 80px;
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	box-shadow: 0 -10px 10px 2px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
}

.navbar-list {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.navbar-list > li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

ion-icon {
	font-size: 35px;
}
