body {
	background-image: url("assi_verticali.jpg");
	background-size:100%;
}

.pagine{
	background-image: url("sfondo_pagine_passaporto.jpg");
	width: 90%;
	
	background-position:center;
	margin:auto;
	margin-top: 27px;
	margin-bottom: 27px;
	border-radius: 10px;
	border-width:5px;
	border-style:solid;
	border-color: black;
	box-shadow: 10px 10px 5px rgba(150,150,90,0.6);
	display:flex;
	flex-direction:row;
	
}

body div {
	flex:1;
	
	padding-top:10px;
}

.titolo {
	text-align:center;
	font-size:50px;
	font-weight: bold;
	color: rgba(100,0,90,1);
	text-shadow: -2px 0 black, 0 1px black, 1px 0 black, 0 -2px black;
	text-decoration:underline;
	text-decoration-color: rgba(100,0,90,1);
	

}

.personal_info {
	font-size: 18px;
	font-style:italic;
	width: 75%;
	margin-right:20%;
	margin-left:5%;
	border-style:solid;
	border-width:10px;
	border-radius:10px;
	border-color:rgba(100,0,90,1);
	padding-top: 6px;
	padding-left:13px;
	padding-right:13px;
	background-color: rgba(184,124,20,1);
	color: rgba(40,26,2,1);
	overflow: auto;
	height: 700px;
}

.bottoni {
	width: 75%;
	margin-right: 20%;
	margin-left: 5%;
	margin-bottom:10px;
	display:flex;
	flex-direction: row;
	justify-content:center;
}

button {
	background-color: blue;
	border-style: solid;
	border-width: 5px;
	border-color: lightblue;
	color: white;
	cursor: pointer;
	border-radius: 8px;
	opacity: 0.6;
	font-size: 19px;
	padding:14px;
}
button:active {
	background-color: white;
	color: blue;
}

button:hover {
	opacity: 0.4;
} 

.griglia_interessi {
	width: 70%;
	margin-left: 17%;
	margin-right: 13%;
	display: grid;
	grid-template-columns:1fr 1fr 1fr;
}


	


.dropdown {
	position:relative;
	display:inline-block;
	height: 90px;
	background-color:rgba(100,0,90,1) ;
	margin-right: 10px;
	margin-bottom: 10px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-left:10px;
	padding-right: 10px;
	color: white;
	border-width:3px;
	border-style:solid;
	border-color: black;
	border-radius: 8px;
	transition: dropdown-content 0.5s;

}

.dropdown-content {
	display: none;
  position: absolute;
  z-index:2;
  background-color:white;
  color: black;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-style: solid; 
  border-width:1px;
  border-color: black;
  padding: 12px 16px;
  font-size:17px;
  font-style: italic;
  font-weight: bold;
}


.dropdown:hover .dropdown-content {
	display:block;
}

.dropdown-content-skiing {
	background-image: url("skiing.webp")
}

