 /* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500&family=Roboto:wght@100;300;400;500;700&display=swap'); */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto/Roboto-Light.ttf");
}
/* @font-face {
  font-family: "Caveat";
  src: url("fonts/Caveat/Caveat-VariableFont_wght.ttf");
} */

body {
  margin: 0;
  background-color: #404040;
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  /* font-family: 'Poppins', sans-serif; */
  /* font-weight: 200; */
}
/* Add a black background color to the top navigation */
.topnav {
  position: fixed;
  background-color: #333;
  overflow: hidden;
  z-index: 10;
  width: 100%;
}
/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  transition: 1s ease;
}
/* Change the color of links on hover */
.topnav a:hover {
  background-color: #D3D3D3;
  color: black;
  text-decoration: none;
}
/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #F5F5F5;
  color: black;
}
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  /* .topnav a:not(.active){display:none;} */
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}


#particles-js{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #404040;
  z-index: 0;
}
#content{
  text-align: center;
}
#profilepic{
  /* display: block; */
  /* clear: both; */
  /* margin: auto; */
  /* top: 8%; */
  margin-top: 12%;
  position: relative;
  width: 19%;
  max-height: 290px;
  max-width: 290px;
  min-width: 200px;
  min-height: 200px;
  border-radius: 200px;
  border: 2px solid white;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  #content img{
    margin-top: 30%;
  }
}
#content .title{
  /* display: block; */
  /* clear: both; */
  position: relative;
  color: white;
  padding-left: 12%;
  padding-right: 12%;
  pointer-events: none;
  z-index: 1;
}
#content .title h1{
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  margin-top: -50px;
  text-shadow: 2px 2px 5px black;
}
#content .regularParagraph {
  color: white;
  text-shadow: 2px 2px 3px black;
  padding-left: 12%;
  padding-right: 12%;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
#home_description{
  font-size: 30px;
  font-weight: 200;
  margin-top: -30px;
}
.infotitle{
  display: block;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 300;
}
.aboutinfo{
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 20px;
  color: #181818;
  background-color: #D3D3D3;
  padding: 15px;
  border-radius: 5px;
}
#map {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 400px;
  width: 90%;
  max-width: 700px;
  resize: both;
  overflow: auto;
  border:0;
  pointer-events:auto;
}
.photo{
  width: 70%;
  resize: both;
  overflow: auto;
  border: 1px white;
}

.imageblock{
  display: inline-block;
  position: relative;
}
.imageblock img{
  position: relative;
  margin: 3%;
  border: 1px solid white;
  width: 90%;
  height: auto;
  min-width: 350px;
  max-width: 800px;
  padding: 10px;
  z-index: 2;
  opacity: 1.0;
  transition: 0.5s ease;
}
.imageblock .text{
  color: white;
  text-align: center;
  position: absolute;
  z-index: 3;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 25%;
  width: 70%;
  opacity: 0;
  transition: 0.5s ease;
}
.imageblock:hover img{
  opacity: 0.2;
}
.imageblock:hover .text{
  opacity: 1;
}
.textbox{
  position: relative;
  margin-top: 3%;
  color: #101010;
  text-align: center;
  z-index: 3;
}
.textbox p:hover{
  background-color: #D0D0D0;
}
.textbox p{
  display: inline-block;
  background-color: white;
  width: 40%;
  padding: 1em;
  border-radius: 5px;
  margin: 5px;
  font-size: 18px;
  opacity: 1;
  transition: 1s ease;
}
@media screen and (max-width: 900px){
  .imageblock .text{
    position: static;
    opacity: 1.0;
  }
  .textbox p{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: 80%;
  }
}
.contacticon{
  display: inline-block;
  position: relative;
  z-index: 2;
  fill: white;
  margin: 15px;
  transition: 0.8s ease;
}
.contacticon .tooltiptext {
  opacity: 0;
  display: inline;
  background-color: #262626;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  z-index: 3;
  transition: 0.3s ease;
}
.contacticon:hover .tooltiptext {
  opacity: 1;
}

.progressBarContainer {
  position: relative;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background-color: #ddd;
  border-radius: 8px;
  text-align: right;
  color: #101010;
}
.progressBarContainer .progressBar {
  color: white;
  padding: 10px;
  width: 15.6%;
  border-radius: 8px 0 0 8px;
  background-color: #333;
  box-shadow: inset 0 0 10px 2px #141414;
}