body{
    padding:0px;
    background-color: black;
    font-family: Avenir,Helvetica,sans-serif,monospace;
    color:rgb(179, 204, 227);
}
main{
    width:100vw;
   /* display:flex;*/
    align-items: center;
    justify-content: center;
    padding-top:6rem;
    padding-bottom: 8rem;;
}
main article{
    max-width:700px;
}

header{
    width:100vw;
    position:fixed;
    top:0px;
    display:flex;
    align-items: center;
    justify-content: left;
    background-color: black;
}
header li{
    font-weight: normal;
    display: inline-block;
    padding:0.5rem;
    margin:1rem;
    font-size: 2rem;;
}

nav{
    position:fixed;
    top:0;
    display:flex;

}
nav ul{
    width:calc(100vw - 2rem);
    display:flex;
    justify-content: flex-end;
    margin:0px;
    padding:0px;
   
}
nav ul li{
    list-style-type: none;
    padding:0.5rem;
    margin:1rem;
    font-size: 2rem;;
}
nav ul li a{
    text-decoration: none;
    color:rgb(179, 204, 227);
}
nav ul li:hover {
    background-color: white;
    
}
nav ul li:hover a {
   color:rgb(40, 50, 80);
}
section#screenshots{
    width:100vw;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top:6rem;
    padding-bottom: 8rem;
}
section#screenshots article{
    flex-basis: 400px;
}
section#screenshots article img{
    width:100%;
    height:100%;
    object-fit: cover;
}

section#screenshots article:hover .image{
    opacity: 0.3;

}
section#screenshots article:hover .middle {
    opacity: 1;

}
.container {
    position: relative;
    text-align: center;
    color: white;
    height: 300px;
    width: 100%;

}
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    padding: 8px 16px;
    
}
.image{
    opacity: 1;
    display: block;
    transition: .5s ease;
    backface-visibility: hidden;
}
.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #6791b1;
    color: white;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text {
    background-color: #6791b1;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
}

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;	
}

.current a{
    color:white
}
section#content {
    display: flex;
}
