@keyframes slide_down {
0%{
	height: 0vh;
	/* opacity: 0; */
	}
99%{
	opacity: 1;
	height: 100vh;
	}
100%{
	opacity: 1;
	height: 100%;
	}
}
.logo{
	width: 100%;
	margin: auto;
	/* background-image: url('../img/logo.png'); */
	background-repeat: no-repeat;
	background-size: 100%;

}
.main {
	width: 50%;
	margin: auto;
	/* background-color: lightgrey; */
	/* border-color: black; */
	/* border-style: solid; */
	/* border-width: 0px 0.5vh; */
}

.text{
	/* opacity: 0; */
	overflow: hidden;
	font-family: LiberStruct;
	padding-left: 1vw;
	padding-right: 1vw;
	animation: slide_down 2s linear forwards;

}

@font-face {
	font-family: LiberStruct;
	src: url('../font/liber-struct.ttf');
}

h1{
	font-family: LiberStruct;
}
img{
	max-width:100%;
	max-height:100%;
}
h1,h2, h3{
	text-align:center;
}
ul{
	line-height: 2;
	list-style-type: none;
	padding-left: 1.2em;
	text-indent: -1.2em;
}
ul li:before
{
    content: '\1F48E';
	display: block;
	float: left;
	width: 1.2em;
    margin: 0 1em;    /* any design */
	color: black;
}
.name{
	color: Navy;
}

.title{
	font-style: oblique;
}
a{
	text-decoration: none;
	color:black;
}
