@font-face {
	font-family: "Exo";
	src: url("fonts/exo/TTF/Exo-VariableFont_wght.ttf");
	src: url("fonts/exo/TTF/Exo-VariableFont_wght.ttf") format("truetype");
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    font-family: "Exo", Arial, Helvetica, Sans-serif;
}

.main {
    position: relative;
	background-image: url("../img/mini.jpg");
	background-position: top center;
	background-size: cover;
	height: 100vh;
	width: 100vw;
}

#container {
    position: absolute;
    left: 0;
    top: 0;
	background: rgba(0, 0, 0, 0.525);
	height: 100%;
    width: 100%;
}

.content {
	position: absolute;
	left: 0;
	right: 0;
	top: 40%;
    transform: translateY(-50%);
	text-align: center;
	color: #fff;
	text-shadow: 0px 5px 13px rgb(0 0 0 / 55%);
	padding: 10px;
}

.title {
	font-size: 5em;
	line-height: 1.5;
}

.subtitle {
	font-size: 3.2em;
	line-height: 1.5;
}

@media screen and (max-width: 900px) {
	body {
		font-size: 10px;
	}
}
