html {
  background-image: url(img/background-so02.jpg);
}
.shadow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  /* border-radius: 100%; */
  border-color: red;
  border-style: solid;
  animation: moveShadow 5s infinite alternate ease-in-out;
  /* z-index: -9999; */
}

@keyframes moveShadow {
  0% {
    top: 30%;
    left: 10%;
  }
  100% {
    top: 30%;
    left: 70%;
  }
}

body {
  /* font: bold 100%/normal Helvetica, sans-serif; */
  font-family: 'TrashHand', sans-serif;
  text-shadow: 0 0 3px rgba(255,255,255,1) , 0 0 7px rgba(255,255,255,1) , 0 0 10px rgba(255,255,255,1);
  color: #000000;
}

div#header {
  display: flex;
  align-items: center;
  width: 100%px;
  /* height: 450px; */
  /* border: 1px solid black; */
  overflow: hidden;
  margin-left: 150px;
  max-width:100%;
  margin: 0% 0% -2% 0%;
  z-index: 289;
  margin: 0 auto;
}
div#menu {
  /* display: flex;
  align-items: center; */
  /* border: 1px solid red; */
  border-radius: 25px;
  /* background-color: rgba(0,0,0,0.5); */
  width:50%;
  margin:10%;
  padding-top:2%;
  padding-bottom:2%;
  /* height: 300px; */
  float: left;
  margin: 0 auto ;
}

div.menu_element {
  /* border: 1px solid black; */
  font-size:130%;
}

div#logo {
  /* border: 1px solid black; */
  /* height: 200px;
  width: 200px; */
  float: left;
  border-radius: 25px;
  /* background-color: rgba(0,0,0,0.5); */
}

div#logo span {
  font-size: 140%;
  z-index: -20;
}

div#logo img {
  /* border: 1px solid black; */
  width: 80%; /* or any custom size */
  height: 100%; 
  object-fit: contain;
  margin-bottom: -40px;
  z-index: 10;
  /* margin:-5% 0% -15% 0%; */
}


h1 {
  font: bold 550%;
  margin:0px 0px 0px 0px;

}

.menu_element {
  cursor:pointer;
  display: block;
}

.menu_element:hover {
  color: rgba(255,0,0,1);
}

.on {
  color: rgba(255,0,0,1);
}


img.photo {
  width:70%;
webkit-filter:drop-shadow(0 0 1px rgba(255,255,255,1)) drop-shadow(0 0 2px rgba(255,255,255,1)) drop-shadow(0 0 5px rgba(255,255,255,1));
  filter: drop-shadow(0 0 1px rgba(255,255,255,1)) drop-shadow(0 0 2px rgba(255,255,255,1)) drop-shadow(0 0 5px rgba(255,255,255,1));
}

img.photo {
  border: 3px solid black;
  border-radius: 10px;
  margin: 10px;
  cursor: pointer;
}

/* Container holding the image and the text */
.img-container {
  position: relative;
  text-align: center;
  color: white;
}
    
/* Bottom right text */
.bottom-right {
position: absolute;
bottom: 20px;
right: 110px;
text-shadow: 0 0 0;
color: rgba(255, 255, 255, 0.3);
}

.bottom-right-home {
  position: absolute;
  bottom: 20px;
  right: 40px;
  color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 0 0;
  }