@import 'fonts.css';

html{
	font-size:62.5%;
	--main-black: #1C1C1C;
}
html, body{
	padding:0;
	margin:0;
	width:100%;
	height:100%;
	display:flex;
	box-sizing:border-box;
	position:relative;
	font-family: 'Petou sans Ms';
}
.index{
	transition:background-color 3s, color 3s;
	transition-timing-function: linear
}
body.light_font{
	color:white;
}
body *{
	box-sizing: border-box;
}
body{
	font-size:1.6rem;
	justify-content: center;
	align-items: center;
}
.index main{
	text-align: center;
	width:50vw;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-width:300px;

}
.index h1{
	font-size:5rem;
	margin:5vh 0; 
}
.index h2, .index h3{
	margin:0;
}
.index main a{
	background: transparent;
    border: solid 2px;
    color: black;
    text-decoration: none;
    padding: 1vh 5vw;
    font-weight: bold;
    margin-top: 15vh;
    transition: all .2s;
}
.index main a:hover{
	background-color:black;
	color:white;
	border-color:black;
}