body {
	margin-left: 0px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-top: 0px;
}

#topbar {
	padding: 10px 0px;
    background: #141027;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 30px;
    opacity: .5
}

.topbar-button {
	position: relative;
	float: right;
	margin-right: 10px;
	padding-left: 5px;
	padding-right: 5px;
	border-radius: 4px;

}

.topbar-link {
	text-decoration: none;
}

.topbar-text {
	text-decoration: none;
	font-family: Arvo;
	color: white;
    font-size: 20px;
}

#current-page {
    font-family: Arvo;
    font-size: 20px;
    position: relative;
    margin-left: 20px;
    color: white;
}

.topbar-text:hover {
	font-weight: bold;
}





/*index.html*/

#home-box {
  position: absolute;
  width: 80%;
  height: 60%;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#my-name {
  color: black;
  font-family: Arvo;
  font-size: 80px;
  font-weight: 100;
  text-align: center;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
}

#text-headline {
  color: black;
  font-family: Arvo;
    font-size: 34px;
    font-weight: 100;
    text-align: center;
    width: 100%;
    position: relative;
    top: 10%;
    left: 50%;
  transform: translate(-50%, -50%);

}

#main-box {
  position: relative;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 87.5%;
  height: 22.5%;
  border-radius: 10px;
  opacity: 0.7;
}

#year {
    color: black;
    font-family: Arvo;
    font-size: 20px;
    font-weight: 100;
    text-align: center;
    width: 87.5%;
    position: relative;
    top: 15%;
    left: 50%;
    margin-top: 20px;
    transform: translate(-50%, -50%);
    opacity: 1;
}

#main-text {
    color: black;
    font-family: Arvo;
    font-size: 20px;
    font-weight: 100;
    text-align: center;
    width:  87.5%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}







/*projects.html*/

#my-projects {
  color: black;
  font-family: Arvo;
  font-size: 80px;
  font-weight: 100;
  text-align: center;
  width: 80%;
  position: absolute;
  top: 27%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#pictures {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}
#pictures img {
    width: 20%;
    margin: 0 2%;
    transition: 0.3s;
}
#pictures img:hover {
    cursor: pointer;
    opacity: 0.8;
}
.hidden {
    display: none;
}
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.lightbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 5%;
    width: 80%;
}
.lightbox img {
    width: 100%;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.lightbox .caption {
    top: 200px;
    box-sizing: border-box;
    width: 100%;
    padding: 2.5%;
    background: white;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}


a {
    color: inherit;
    text-decoration: none;
}







/* ---- particles.js container ---- */

#particles-js{
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fdb515;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}








/*mobile stuff*/


@media all and (max-width: 1000px) and (orientation: landscape){
}


@media only screen and (min-width: 375px) and (orientation: portrait) {
/* column for mobile on projects*/


#pictures {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

#pictures img {
    width: 50%;
    margin: 5% 5%;
    transition: 0.3s;
}


}
