@charset "utf-8";


@import url('https://fonts.googleapis.com/css2?family=Wallpoet&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap');
* {
    box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}

body{
  
  background-color:#020a3d;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: right;
    margin: 0;
    height: 30em;
   /* font-family: 'Wallpoet', sans-serif;*/
  font-family: 'Comfortaa', cursive;
}
header{
	margin: 10em auto;
	padding: 0px 50px;
	width: 55%;
}
li{
  list-style: none;
  font-family: 'Comfortaa', cursive;
  font-size: 1em;
  margin: 0;
}
ul{
 margin: 0;
 padding: 0;
 display: flex;
 
}
  
h1{
	font-family: 'Wallpoet', sans-serif;
  
	text-align: center;	
	word-spacing: 1em;
	font-size: 3.7em;
	color: #FFFFFF;
}
h2{
	font-family: 'Wallpoet', sans-serif;
	text-align: center;	
	word-spacing: 1em;
	font-size: 1.5vw;
	color: #FFFFFF;
}
h3{
  font-family: 'Wallpoet', sans-serif;
  text-align: center;
  color: #FFFFFF;
  font-size: 2em;
}
nav a{
  text-decoration: none;
  font-family: 'Wallpoet', sans-serif;
  color: #FFFFFF;
  display: block;
  padding: 10px 10px 10px 10px;
  
}

a{
  text-decoration: none;
  color: #FFFFFF;
  display: block;
  padding: 10px 10px 10px 10px;
  
}

nav a:hover{
  border-bottom: 3px solid red;
}

nav{
  font-family: 'Wallpoet', sans-serif;
  width: 100%;
  height: 45px;
  display: flex;
  position: fixed;
  top: 0;
  padding: 5px;
  background-color: #020a3d;
  right: 0;
  justify-content: center;
  z-index:2;
}
.proj-const{
  font-size: 3vw;
  margin: 10% 0 5% 0; */
	text-align: center;	
	word-spacing: 1em;
  
}
.gallery-image {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-image img {
  height: 250px;
  width: 350px;
  transform: scale(1.0);
  transition: transform 0.4s ease;
}

.img-box {
  box-sizing: content-box;
  margin: 10px;
  max-height: 250px;
  height: auto;
  width: 350px;
  overflow: hidden;
  display: inline-block;
  color: white;
  position: relative;
  background-color: white;
}
.caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 0.0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
  height: 250px;
  width: 350px;
  background-color:rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.img-box:hover img { 
  transform: scale(1.1);
}

.img-box:hover .transparent-box {
  background-color:rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
  transform: translateY(-20px);
  opacity: 1.0;
}

.img-box:hover {
  cursor: pointer;
}

.caption > p:nth-child(2) {
  font-size: 0.8em;
}

.opacity-low {
  opacity: 0.5;
}

.doc{
  font-family: 'Comfortaa', cursive;
  text-align: center;
  color: #FFFFFF;
  font-size: 1em;
  margin: 0 0 2% 0;
}
#footer {
   /*position:absolute;*/
   left:0px;
   bottom:0px;
   height:30px;
   width:100%;
   /*background:#FFFFFF;*/
  text-align: center;
  color: #FFFFFF;
}