* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-image: linear-gradient(to bottom, #fed4e0, rgb(254, 255, 253));
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
}

nav {
  position: absolute;
  top: 2rem;
  right: 5rem;
  display: flex;
  gap: 1.5rem;
}

nav a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid black;
  border-radius: 50px;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
  background-color: black;
  color: white;
}


.logo {
  position: absolute;
  top: 10px;
  left: 10px;
}

.header-logo {
  width: 200px; 
  height: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.1);
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid black;
  border-radius: 50px;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
  background-color: black;
  color: white;
}

main {
  padding-top: 9rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.about-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.about-photo img {
  width: 200px;
  height: auto;
  border-radius: 50%;
}

.about-info {
  max-width: 600px;
  padding: 1.5rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-item p {
  font-size: 1rem;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f1f1f1;
  position: fixed;
  bottom: 0;
  width: 100%;
}
