* {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

body {
 background-color: #000;
}

header{
	position: fixed;
	width: 100%;
	background-color: #fafafa;
	top: 0;
    border-bottom: 4px dotted #3f3f3f;
}

section {
	width: 100%;
	min-height: 100vh;
	padding-top: 60px;
}
.flex-container {
    display: flex;
    flex-direction: row;     /* make main axis horizontal (default setting) */
    justify-content: center; /* center items horizontally, in this case */
    align-items: center;     /* center items vertically, in this case */
}
 
.box {
    font-weight: 400;
    width: 30%;
}

p {
    font-size: 36px;
    font-family: 'Mg Brush Version 2', sans-serif;
    margin-top: 60px;
    margin-bottom: 60px;
}

nav {
	height: inherit;
	background-color: transparent;
	opacity: 0.3;
	transition: 0.3s;
    margin-left: auto;
	margin-right: auto;
	display: inline;
	/*align-items: center;*/
	text-align: center;
}
nav:hover{
	opacity: 1;
}

nav ul {
    list-style: none;
    text-align: center;
 }
 
 nav ul li {
    display: inline-block;
 }

nav a {
	font-family: 'Mg Brush Version 2', sans-serif;
	/*flex: 1 1 auto;*/
	text-decoration: none;
	font-size: 32px;
	display: inline-block;
	margin: 20px;
	color: inherit;
}

nav a::after {
	content: "";
  	display: block;
  	width: 0;
  	transition: width 0.3s;
  	border-bottom: 4px solid #2b2b2b;
}
nav a:hover::after {
  width: 100%;
}

#main {
	background-color: #fff;
	/*background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(219,219,219,1) 100%);*/
	display: flex;
	flex-direction: column;
	align-items: center;
}
h1 {
	font-size: 120px;
	font-family: 'Mg Brush Version 2', sans-serif;
	text-align: center;
    margin-top: 50px;
}
h2{
    text-align: center;
	font-size: 60px;
	font-family: 'Mg Brush Version 2', sans-serif;
	font-weight: 500;
    display: block;
}
h3{
    text-align: center;
	font-size: 36px;
	font-family: 'Mg Brush Version 2', sans-serif;
	font-weight: 500;
}

.button {
    font-family: 'Mg Brush Version 2', sans-serif;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 32px;
    margin: 4px 2px;
    cursor: pointer;
  }

.button5 {
    margin-top: 20px;
    background-color: white;
    color: black;
    border: 2px solid #555555;
  }

  .button5:hover {
    color: white;
    background-color: black;
  }

#legend {
    color: #FFF;;
	background-color: #000;
	/*background: linear-gradient(0deg, rgba(84,84,84,1) 0%, rgba(219,219,219,1) 100%);*/
}

#roadmap {
    color: #FFF;
	background-image: url("img/bg.avif");
	/*background: linear-gradient(180deg, rgba(84,84,84,1) 0%, rgba(40,40,40,1) 100%);*/
}

#roadmap h3{
    text-shadow: #000 1px 0 10px;
}

#roadmap ul {
    margin-left: 15%;
    text-align: left;
}
#roadmap ul li{
    text-shadow: #000 50px 0 50px;
    font-family: 'Mg Brush Version 2', sans-serif;
    font-size: 28px;
    padding: 10px;
    
}

#grugarmy{
    color: #FFF;
    background-color: #000;
    text-align: center;
    padding-bottom: 30px;
}

#grugarmy .box{
    width: 30%;
}

span{
    font-family: 'Mg Brush Version 2', sans-serif;
    font-size: 24px;
}