:root {
  --colorshift: hsl(0, 100%, 50%);
  --colorshift-opposite: hsl(180, 100%, 50%);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: none;

}



body {
  font-size: 1rem;
  padding: 1rem;
  font-family: 'Times New Roman', Times, serif;
}

@media (max-width: 1200px) {
  html {
    font-size: 12px;
  }
}

.text{
  font-family: inherit;
  font-weight: 400;
  font-size: 1rem;
}  

p{
  margin: 0px;
  padding: 0px;
}

h1, h2, h3 {
  font-weight: 400;
  font-size: 2rem;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0.03rem;
  color: var(--colorshift);
}

.content{
  margin-top: 6rem;
}
.centered-dropdown {
  font-family: inherit;
  color: var(--colorshift);
  font-weight: 400;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 12;
  font-size: 1em;
  text-align: center;
  position: fixed;
  margin-bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100; /* stay above other content */
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  width: 100%;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content h2 {
  cursor: pointer;
}


a {
color: var(--colorshift);
text-decoration: none;
}


a:hover {
color: black;
}


.fixed-bottom-center {
  color: var(--colorshift);
  position: fixed;
  bottom: 1rem; /* distance from the bottom */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}


.orlando-bio{
  color: var(--colorshift);
  margin-top: 6rem;
  margin-bottom: 6rem;
  text-align: center;
  font-family: inherit;
  font-weight: 400;
  font-size: 3rem;
}

.project-info-gallery {
  color: var(--colorshift);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  font-size: 1.5rem;
  letter-spacing: 1.3%;
  text-align: left;
  line-height: auto;
}


@media (max-width: 1200px) {
  .project-info-gallery {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}


.description{
  border-top: 1px solid var(--colorshift);
  padding-top: 2rem;
  margin-top: 4rem;

}

