html {
  background-color: #ADADFF;
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

body {
  text-align: center;
}

.header-link {
  color: #333;
  margin-top: 50px;
  font-size: 2em;
  text-align: center;
}

a {
  display: block;
  margin: 20px 0;
  font-size: 18px;
  text-decoration: none;
  color: #0073e6;
}

a:visited {
  color: #0073e6;
}

a:hover {
  color: #0073e6;
}

a:active {
  color: #0073e6;
}

#content {
  background-color: #FFC2AD;
  width: 250px;
  margin: 20px auto;
  padding: 15px 40px; /* adjust 1st number for top and bottom padding, 2nd number for left and right padding */
  border: 1px solid #ccc;
  border-radius: 15px;
  overflow: hidden;
  flex-direction: column;
  display: flex;
  align-items: center;
}

#linkedin-logo {
  float: left;
  max-width: 11%;
  height: auto;
  width: auto\9; /* ie8 */
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ccc;
  background-color: #FFEBAD;
  border-radius: 5px;
  padding: 10px;
  flex: 1;
  position: relative;
  transition: background-color 0.2s ease;
}

#x-logo {
  float: left;
  max-width: 11%;
  height: auto;
  width: auto\9; /* ie8 */
}

#lock-icon {
    float: left;
    max-width: 11%;
    height: auto;
    width: auto\9; /* ie8 */
}

#rps-logo {
  float: left;
  max-width: 11%;
  height: auto;
  width: auto\9; /* for IE8 compatibility */
}

#email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
}

#email-logo {
  width: 24px;
  height: auto;
}
#stripe-logo {
  float: left;
  max-width: 11%;
  height: auto;
  width: auto\9; /* ie8 */
}

#github-logo {
  float: left;
  max-width: 11%;
  height: auto;
  width: auto\9; /* ie8 */
}
#projects-logo {
  float: left;
  max-width: 11%;
  height: auto;
  width: auto\9; /* ie8 */
}

#contact-logo {
  float: left;
  max-width: 11%;
  height: auto;
  width: auto\9; /* ie8 */
}

#clickable-container {
  display: flex; /* Display the container as a flex container */
  align-items: center; /* Align the items inside the container vertically */
  text-decoration: none; /* Remove the underline from the link */
  color: #333; /* Set the text color to a dark grey */
  padding: 10px;
}

/* for the email container: */
.normal-text {
  color: #0073e6;
  text-decoration: none;
}

.link-text {
  color: #0073e6;
  text-decoration: none;
}

/* Fixed: Added projects to the hover list */
#email:hover, #linkedin:hover, #x:hover, #github:hover, #rps:hover, #donate:hover, #projects:hover, #contact:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

#copy-confirmation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4CAF50;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
}