@charset "UTF-8";
/* CSS Document */
.galleria {
  width: 700px;
  height: 400px;
  background: #000;
}
.front-text {
  width: 30%;
  background: rgba(228, 222, 222, 0.85);
  position: absolute;
  top: 55%;
  right: 10%;
  padding: 1em;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  overflow: scroll;
  z-index: 10001;
}
.close {
  position: absolute;
  top: 1em;
  right: 1em;
  background-color: #ccc;
}
.close a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}
.proposal {
  color: #d7a700;
  font-style: italic;
  background: #000;
}
a {
  color: black;
  font-family: sans-serif;
}
a:hover {
  border-bottom-style: solid;
  border-bottom-width: thin;
  border-bottom-color: #d7a700;
}
h1 {
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro",
    "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
}
p {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0.35rem 0;
}
@media (max-width: 768px) {
  .front-text {
    width: 50%; /* Smaller width for screens up to 768px */
  }
}

@media (max-width: 480px) {
  .front-text {
    width: 80%; /* Full width for very small screens */
  }
}
