@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300&display=swap');
body {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

h1 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 2.5em; 
}

p {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.2em;
  text-align: left;
}

.profile-container {
  background-color: #ffffff;
  border-radius: 12px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
}


.profile-picture {
  width: 200px;
  height: 200px;
  border-radius: 50%; 
  object-fit: cover;
  margin-bottom: 10px;
}


.profile-picture:hover {
  opacity: 0.8; 
}

.social-icons {
  margin-top: 4em;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;
  color: #333; 
}

.social-icons a:hover {
  color: #0077b5; 
}

