body {
    background-color: #454545;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.bio {
    font-size: 40px;
    color: #87f8d4;
    font-family: 'Roboto Mono', monospace;
    text-align: center;
    max-width: 1500px;
    margin: auto;
}

.name {
    font-size: 80px;
    color: #e9f8e3;
    font-family: 'Roboto Mono', monospace;
    text-align: center;
    margin: auto;
}

p {
    font-size: 24px;
    text-align: center;
}


.main_image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

a:link {
    color: #d588f3;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #d588f3;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: #74ff00;
    background-color: transparent;
    text-decoration: underline;
}

.bio a:hover, .social-links a:hover {
    color: #74ff00;
    text-decoration: underline;
}

.navbar {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
}

.navbar a {
    color: white;
    margin-left: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    color: #d588f3;
    font-size: 40px;
    text-decoration: none;
}

.social-links a:hover {
    color: #74ff00;
}



.button-class {
  background-color: #EA4C89;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-1:hover,
.button-1:focus {
  background-color: #F082AC;
}

.button-class:hover {
    background-color: white;
    color: black;
}

.summary {
    font-size: 40px;
    color: #92caf8;
    font-family: 'Roboto Mono', monospace;
    text-align: center;
    max-width: 75%;
    margin: auto;
}