@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  background-color: #050607;
  background-image: url("background.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: 5em;
}

a:link {
  color: white;
  text-decoration: none;
}

a:visited {
  color: white;
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: underline;
}

a:active {
  color: white;
  text-decoration: none;
}

a.green:link {
  color: #00ff80;
  text-decoration: none;
}

a.green:visited {
  color: #00ff80;
  text-decoration: none;
}

a.green:hover {
  color: #00ff80;
  text-decoration: underline;
}

a.green:active {
  color: #00ff80;
  text-decoration: none;
}

blockquote {
  margin-left: 1em;
  margin-right: 0;
  border-left: 5px solid #00ff80;
  padding: 0em 0em 0em 0.5em;
  color: #a0a0a0;
  font-size: 0.9em;
}

.centerizer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}

.text-bubble {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  width: 90%;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  padding: 1em;
  gap: 1em;
}

.title {
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 3em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 20%;
  margin-bottom: 1.5em;
}

.by {
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

.justified-paragraph {
  text-align: justify;
  hyphens: auto;
}

.sectionbreak {
  display: flex;
  justify-content: center;
}

.circle {
  width: 1em;
  height: 1em;
  background-color: #00ff80;
  border-radius: 50%;
  margin: 0.3em;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
}

.mypic {
  max-width: 10em;
  clip-path: circle(50% at center);
}

.contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  object-position: top;
}

.gallery-item {
  aspect-ratio: 1;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.caption-heading {
  font-size: 1.2em;
  font-weight: bold;
}

.pswp--custom-icon-colors {
  --pswp-icon-color: #00ff80;
  --pswp-icon-color-secondary: #333;
}

.pswp__counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
}

.pswp__dynamic-caption--aside {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0em;
  color: white;
}
.pswp__dynamic-caption--below {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0em;
  color: white;
}
.pswp__dynamic-caption--mobile {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0em;
  color: white;
}

.top-menu-bar {
  display: flex;
  justify-content: flex-end;
  padding: 30px;
  position: relative;
}

#menu-button {
    position: relative;
}

#menu-button a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.15s ease;
}

#menu-button a:hover {
  color: #00ff80;
}

#menu-button input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menu-button span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition:
    transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

#menu-button span:first-child {
  transform-origin: 0% 0%;
}

#menu-button span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menu-button input:checked ~ span {
  opacity: 1;
  transform:
    rotate(45deg)
    translate(-2px, -1px);
  background: #00ff80;
}

#menu-button input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform:
    rotate(0deg)
    scale(0.2, 0.2);
}

#menu-button input:checked ~ span:nth-last-child(2) {
  transform:
    rotate(-45deg)
    translate(0, -1px);
}

#menu-button input:checked ~ ul {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

#menu {
  position: absolute;
  top: -50px;
  right: -38px;
  width: 200px;
  padding: 50px 30px 50px;
  transition: transform 0.4s ease;
  background: rgba(0, 0, 0, 0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: 0.2em;
  border-radius: 1em 0 0 1em;
  opacity: 0;
  transform: scale(0.90);
  transform-origin: top right;
  pointer-events: none;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

#menu li {
  padding: 5px 0;
  list-style-type: none;
}

#menu li label {
  cursor: pointer;
}
