body {
  background-color: #1b1b1b;
  color: #ffffff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  line-height: 1.0;
  margin: 50px;
  padding: 0px;
}


.contact-info {
  position:fixed;
  top: 20px; /* Adjust top distance from the edge */
  right: 10px; /* Adjust right distance from the edge */
  font-family: 'Courier New', Courier, monospace; /* Adjust font-family */
  font-size: 18px; /* Adjust font size */
  color: #fafffc; /* Adjust text color */
  border-radius: 100px;
}


.container {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: #000000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
}

.profile-image {
  position: absolute;
  top: 37%; /* Adjust as needed to center vertically */
  right: 120px; /* Adjust right distance from the edge */
  transform: translateY(-50%);
  width: 400px; /* Adjust width based on image size */
  height: auto;
  border-radius: 40%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.corner-text {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #1db567;
  font-size: 24px;
}

.header-content {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
}

.auto-type {
  font-family: 'Courier New', Courier, monospace; /* Example: Change to Arial or any desired font */
  font-size: 29px; /* Example: Adjust font size */
  font-weight:lighter;
  color: #1db567; /* Example: Change text color */
  
}



header button {
  font-size: 20px;
  font-family: 'Courier New', Courier, monospace;
  background-color: #1db567;
  border: none;
  color: #841111;
  cursor: pointer;
  padding: 10px 20px;
  margin-left: 10px;
}

header button:hover {
  background-color: #148f4e;
}

.page {
  max-width: calc(100% - 20px); /* Adjust based on profile picture width */
  margin-left: 0px; /* Adjust margin to create space between text and image */
  padding: 0px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  color: white;
}

.page.reveal {
  opacity: 1;
}

.line {
  margin-bottom: 10px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-content {
  background-color: #1b1b1b;
  padding: 20px;
  border-radius: 10px;
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
  color: #ccc;
}

.popup h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.popup p {
  font-size: 20px;
  margin-bottom: 10px;
}

.popup a {
  color: #1db567;
  text-decoration: none;
}

.popup a:hover {
  text-decoration: underline;
  color: #b7ffda; /* Adjust to your desired shade of green */
}

.popup button {
  font-size: 20px;
  background-color: #1db567;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
}

.popup button:hover {
  background-color: #148f4e;
}



a {
  color: #1db567;
  text-decoration: none;
}

/* Change color when hovered */
a:hover {
  color: #148f4e; /* Adjust to your desired hover color */
  text-decoration: underline;
}
