body{
    margin:0px;
    padding:0px;
    background-color: black;
    font-family: Inconsolata,monospace;
    color:white;
}

button {
    z-index: 11;
}

main{
    width:100vw;
    display:flex;
    align-items: center;
    justify-content: center;
}

header{
    width:100vw;
    position:fixed;
    top:0px;
    display:flex;
    align-items: center;
    justify-content: center;
}
header h1{
    font-weight: normal;
    display: inline-block;
    border:1px solid white;
    padding:0.5rem;
    margin:1rem;
    font-size: 1rem;;
}

nav{
    position:fixed;
    top:0;
    display:flex;
    z-index:10;
   
}
nav ul{
    width:calc(100vw - 2rem);
    display:flex;

    justify-content: flex-end;
    margin:0px;
    
    padding:0px;
   
}
nav ul li{
    list-style-type: none;
    border:1px solid white;
    padding:0.5rem;
    margin:1rem;
    font-size: 1rem;;
}
nav ul li a{
    text-decoration: none;
    color:white;
}
nav ul li:hover {
    background-color: white;
    
}
nav ul li:hover a {
   color:black;
}
section#screenshots{
    width:100vw;
    display:flex;
    align-items: center;
    justify-content: space-around;
    padding-top:4rem;
    padding-bottom: 8rem;;
}

section#screenshots img{
    width:28vw;
}

footer{
    position: fixed;
    bottom:20px;
    width:100vw;
    display:flex;
    align-items: center;
    justify-content: space-around;
    padding-top:4rem;
    z-index:10;
}

footer a {
    display:block;
	width: 60px;
	height: 52px;
	
}

.arrows path {
	stroke: #FFFFFF;
	fill: transparent;
	stroke-width: 2px;	
	
}

.arrows path:hover{
    stroke-width: 4px;	
}