body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	display: flex;
	color: white;
	min-height: 100vh;
	/*height: 100vh;*/
	background: url('png/background.png') no-repeat center center fixed;
	background-size: cover;
}

#home-button {
  position: fixed;
  top: 10px;
  left: 10px;
  cursor: pointer;
  transition: filter 0.3s;
}
#home-button img {
  width: 50px; 
  height: 50px;
}
#home-button:hover {
  filter: brightness(1.2);
}


#left-container {
  flex: 2;
  background: url("./png/background.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  text-shadow: 2px 2px 4px #008080;
  overflow-y: auto;
}

#right-container {
  flex: 3;
  overflow: hidden;
}

#cesiumContainer {
  height: 100vh;
  margin: 0;
}

#buttons-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.button {
  background: linear-gradient(to right, orangered, white);
  color: white;
  padding: 15px;
  border: 2px solid #E8E8E8;
  border-radius: 5px;
  cursor: pointer;
  width: 80%;
  text-align: left;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.button:hover {
  background: white;
  color: orangered;
  border-color: white;
}

h1 {
  font-size: 42px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px #008080;	  
}
  
h2 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px #008080;
}

h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

ul li {
  color: white;
}

.white-text {
	color: white;
}

.black-text {
	color: black;
}

.blue-text {
	color: blue;
	text-decoration: underline;
}

.blue-text:hover {
	text-decoration: underline;
	color: orange;
}


.download {
  color: yellow;
  text-decoration: underline;
  font-size: 18px;
  transition: color 0.3s, border-bottom-color 0.3s;
}

.download:hover {
  color: orange;
}

.sections {
  display: flex;
  justify-content: center;
  width: 80%; 
  margin: 20px auto; 
}

.section {
  margin: 30px; 
}

/*Modal*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100000; /* Sit on top */
  /*padding-left: 10vw;*/
  padding-top: 10px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
}
#modal-title {
  font-color: rgb(0,0,0);
}
.closeM {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.closeM:hover,
.closeM:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/*FOTO*/
#img-container {
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
  cursor: grab;
}

/*PDF*/
#pdf-container {
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
  cursor: grab;
}

#pdf-container.grabbing {
  cursor: grabbing;
}

/*GALLERY*/
.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  width: 50vw;
   
}

div.gallery {
  border: 3px solid white;
  border-radius: 5px;
  background: rgba(255, 69, 0, 0.98);
  cursor: pointer;
}

div.gallery:hover {
  border: 2px solid #402000;
  transform: scale(1.1);
}

div.gallery img {
  width: 100%;
  height: 180px;
  /*height: auto;*/
}

div.desc {
  padding: 15px;
  text-align: center;
  color: white;
 
}

* {
  box-sizing: border-box;
}

.responsive {
  padding:6px 6px;
  float: left;
  width: 19.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
	width: 49.99999%;
	margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
	width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}