
header {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: black;
  color: white;
  object-fit: contain;
  position: relative;
  justify-content: center;
  align-content: center;
  align-self: center;
  align-items: center;
  margin: auto;
}

.header-box-container {
  background-color: #888;
  border: 3px solid #fff;
  box-shadow: 5px 5px 0px #fff;
  height: auto;
  min-height:50%;
  max-height: 100%;
  min-width: 30%;
  width:auto;
  width:min-content;
  position: relative;
  margin: auto;
  padding: auto;
}

header h2 {
  font-weight: bold;
  color: black
}
#animation-container {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.email-text {
  color: white;
  font-size: 10px;
  margin: auto;
  padding: auto;
  text-align: center;
}

.cv_button {
  background-color: #bbb;
  color: #000;
  box-shadow: 5px 5px 0px #000;
  border: none;
  margin: 10px;
  padding: auto;
  cursor: pointer;
  max-height:100%;
  border-radius: 0%;
}
.cv_button:hover {
  background-color: #333;
}

.header-logo {
  position: relative;
  height: min-content;
  width: min-content;
  height: 50%;
  width: 100%;
  margin: auto; 
  padding: auto;
}

.goodreads-logo{
  background-color: rgba(234,230,206,255);
}

.linkedin-logo{
  background-color: rgba(0,102,153,255);
}

.letterboxd-logo{
  background-color: rgba(0,0,0,0);
}

.header-container {
  background: #eaeaea;
  padding: 20px 0;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
}

.header-box {
  min-width: 320px;
  overflow: hidden;
  background: white;
  padding: 12px 25px;
  border: 5px solid black;
  box-shadow: 8px 8px 0px black;
  text-align: center;
  max-width: 580px;
  width: 90%;
  margin: 5% auto;
}

.site-title h1 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: black;
  margin: 4px 0;
  padding: 2px 5px;
  display: inline-block;
}

.subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  margin-top: 4px;
  background: yellow;
  padding: 3px 5px;
  display: inline-block;
  border: 3px solid black;
}

.header-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 8px 0;
  max-width: 100%;
}

.cv-btn,
button.cv-btn {
  background: black;
  color: white !important;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 3px solid black !important;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.header-logo {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  box-shadow: 10px 10px 0px black;
  filter: contrast(1);
  margin: 2%;
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  a.cv-btn:hover,
  button.cv-btn:hover,
  .cv-btn:hover {
    background: yellow;
    font-weight: bold;
    color: black !important;
    box-shadow: 5px 5px 0px black;
    transform: scale(1.1);
    z-index: 999;
  }

  .header-logo:hover {
    transform: scale(1.4);
    z-index: 50;
  }
}

.lang-switcher {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
}

.lang-switcher .cv-btn {
  font-size: 10px;
  padding: 4px 8px;
  line-height: 1.2;
}

.email-container {
  margin-top: 15px;
  background: yellow;
  padding: 5px;
  display: inline-block;
  border: 3px solid black;
}

.email-text {
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
}

