.video-home {
	position: relative;
	display: block;
	margin-top: 100px;
	text-align: center;
	margin-right: auto;
}

.testo-animato {
	text-align: center;
	color: blue;
}


/*LOGO VARIE PAGINE*/

.index {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2%;
}

.index1 {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2%;
}

.account {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}


/*FINISH LOGO CSS*/


/* TOPIC CSS */

.container {
	text-align: center;
	display: flex;
	flex-direction: row;
	gap: 10px 20px;
	align-items: baseline;
	margin-bottom: 5%;
	margin-top: 2%;
}

@media (max-width: 800px) {
	.container {
		flex-direction: column;
	}
}


/* FINISH */


/*LAYOUT TEMPLATE  CSS*/

.navbar {
	overflow: hidden;
	background-color: #333;
}

.navbar a {
	float: left;
	font-size: 13px;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.dropdown {
	float: left;
	overflow: hidden;
}

.dropdown .dropbtn {
	font-size: 13px;
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
	background-color: red;
}

.dropdown:hover .dropdown-content {
	display: block;
}


/* FINISH LAYOUT TEMPLATE  CSS*/


/* BUTTON format non adeguato */
.login {
	border-radius: 12px;
	background-color: blue;
	color: white;
	padding: 12px;
	width: 200px;
	cursor: pointer;
}

.button1 {
	border-radius: 12px;
	background-color: green;
	color: white;
	border: none;
	padding: 20px;
	cursor: pointer;
}

.top2 {
	text-align: center;
	margin: 0 auto;
	margin-bottom: 5%;
	padding: 2%;
	width: 350px;
	background-color: #ffffff;
}

.top {
	border: 2px solid gray;
	border-radius: 6px;
	margin: 0 auto;
	width: 350px;
	text-align: center;
}

.bottone {
	background-color: rgb(143, 21, 143);
	border-color: rgb(143, 21, 143);
	border-radius: 50px;
	width: 50%;
	height: 50%;
	cursor: pointer;
}

.about-section {
	margin-bottom: 5%;
	padding: 50px;
	text-align: center;
	background-color: #474e5d;
	color: white;
}
/* FINISH BUTTON  */



/* FOOTER */
/*VH (Viewport Height): gestisce 
  il dimensionamento di un elemento 
  in relazione all’altezza della finestra del browser. 
  L’unità vh è pari all’1% dell’altezza della viewport.*/

body {
	font-family: system-ui, sans-serif;
	margin: 0;
	display: grid;
	grid-template-rows: auto 1fr auto;
	background-color: #f4f4f4;
	align-items: start;
	min-height: 100vh;
	box-sizing: border-box;
	font-size: 100%;
}

.footer {
	display: flex;
	flex-flow: row wrap;
	padding: 30px 30px 20px 30px;
	color: #2f2f2f;
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
}

.footer >* {
	flex: 1 100%;
}

.footer__addr {
	margin-right: 1.25em;
	margin-bottom: 2em;
}

.footer__logo {
	font-family: 'Pacifico', cursive;
	font-weight: 400;
	text-transform: lowercase;
	font-size: 1.5rem;
}

.footer__addr h2 {
	margin-top: 1.3em;
	font-size: 15px;
	font-weight: 400;
}

.nav__title {
	font-weight: 400;
	font-size: 15px;
}

.footer address {
	font-style: normal;
	color: #999;
}

.footer__btn {
	display: flex;
	align-items: center;
	height: 36px;
	max-width: max-content;
	background-color: rgb(33, 33, 33, 0.07);
	border-radius: 100px;
	color: #2f2f2f;
	line-height: 0;
	margin: 0.6em 0;
	font-size: 1rem;
	padding: 0 1.3em;
}

.footer ul {
	list-style: none;
	padding-left: 0;
}

.footer li {
	line-height: 2em;
}

.footer a {
	text-decoration: none;
}

.footer__nav {
	display: flex;
	flex-flow: row wrap;
}

.footer__nav>* {
	flex: 1 50%;
	margin-right: 1.25em;
}

.nav__ul a {
	color: #999;
}

.nav__ul--extra {
	column-count: 2;
	column-gap: 1.25em;
}

.legal {
	display: flex;
	flex-wrap: wrap;
	color: #999;
}

.legal__links {
	display: flex;
	align-items: center;
}

.heart {
	color: #2f2f2f;
}

@media screen and (min-width: 24.375em) {
	.legal .legal__links {
		margin-left: auto;
	}
}

@media screen and (min-width: 40.375em) {
	.footer__nav>* {
		flex: 1;
	}
	.nav__item--extra {
		flex-grow: 2;
	}
	.footer__addr {
		flex: 1 0px;
	}
	.footer__nav {
		flex: 2 0px;
	}
}