* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1 {
  margin-bottom: 10px;
}

.about {
  margin-bottom: 30px;
  line-height: 1.5;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-button {
  background-color: rgb(143, 174, 233);
  color: black;
  text-decoration: none;
  padding: 15px;
  border-radius: 8px;
  display: block;
}
