@import url("reset.css") screen;

@import url('https://fonts.googleapis.com/css2?family=Montserrat');


html {
	height: 100%;
	background: #66a5c0;
}

body, table, td, th {
font-family: 'Montserrat' ;
}

#fiume {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
}



@keyframes fadeInOpacity {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*BOTTOM MENU*/

#info {
	position: fixed;
	bottom: 2%;
	right: 1%;
	z-index: 10;
}

.bottom a{
color: #000000;
text-decoration: none;
font-size: 150%;
}

.bottom a:hover {
color: white;
}

ul.bottom li{
display:inline-block;
margin: 0;
padding:0px 5px 0px 5px;
}

.icon {
position: relative;
height: 60px;
opacity: 100%;
top: 15px;
}

.icon_w {
position: relative;
left: -60px;
height: 60px;
opacity: 0%;
top: 15px;
margin-right: -60px;
}

.icon:hover{
	opacity: 0%;
}

.icon_w:hover{
	opacity: 100%;
}



/*/BOTTOM MENU*/

#wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
}


#all
{
	position: relative;
	font-size: 8em;
}

#logo {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2.5em;
	width: 5em;
	height: 5em;
}

#dot {
	position: absolute;
	background: rgba(13, 9, 107, 255);
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(13, 9, 107, 1);
	top: 50%;
	left: 50%;
	margin: -0.3em;
	margin-top: 0.24em;
	width: 0.4em;
	height: 0.4em;
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(13, 9, 107, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(13, 9, 107, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(13, 9, 107, 0);
    }
}

#gallery {
	position: absolute;
	top: 100%;
	background: #66a5c0;
	width: 100%;
	line-height: 0;
	column-count: 2;
	column-gap:0px;
	display: inline-block;
	margin-right: auto;
	margin-left: auto;
}

#gallery img{
	width:100% !important;
	height: auto !important;
	outline: 1px solid white;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 4s;
}
