
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);
}

.header-container {
  background: #eaeaea;
  padding: 40px 0;
  border-bottom: 5px solid black;
}

.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: 25px;
  border: 5px solid black;
  box-shadow: 10px 10px 0px black;
  text-align: center;
  max-width: 80%;
  margin:5%;
  /* min-width: 320px; */
}

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

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

.header-links {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap instead of overflowing */
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
  max-width: 100%;
}

.cv-btn {
  background: black;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  border: 3px solid black !important;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

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

.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;
}

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

.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;
}

