@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
  height: 100%;
  width: 100%;
}
body {
  background-color: #242424;
  color: white;
  font-family: Poppins, Arial, sans-serif;
}
a {
  color: white;
}
.spacer {
  height: 20px;
}
.button-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.button-panel a {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #FD7E14;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.button-panel a:hover {
  background-color: #E0690F;
}
.container {
  display: flex;
  align-items: flex-start;
  margin: 20px;
}
.profile-pic {
  width: 150px;
  height: 200px;
  margin-right: 20px;
}
.about-text {
  display: inline-block;
}
