/* Keep page centered */
body {
  background-color: #0d0d0d;
  color: #fff;
  font-family: "space-grotesk", sans-serif;
  margin: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

main {
  margin-top: 20px;
}

.profile1 {
  width: 150px;
  height: 150px;
  border-radius: 75px;
  object-fit: cover;
  margin-bottom: 20px;
}

.name1 {
  font-size: 24px;
  color: #f0efef;
  margin-bottom: 5px;
  font-family: "space-grotesk", sans-serif;
}

.text1 {
  font-size: 16px;
  font-weight: lighter;
  line-height: 1.6;
  color: #f0efef;
  margin-bottom: 20px;
  font-family: "space-grotesk", sans-serif;
}

.header {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.h1 {
  color: #f0efef;
  padding: 1rem;
  text-align: center;
  font-family: "space-grotesk", sans-serif;
  text-decoration: none;
  font-size: 15px;
}

.img {
  height: 40px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.social-icon {
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.7;
}

.resume-button {
  display: inline-block;
  color: #f0efef;

  font-family: "space-grotesk", sans-serif;
  transition: background-color 0.3s ease;
}
