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

body {
  font-family: Arial, sans-serif;
  background: rgb(2,0,36);
  background: linear-gradient(360deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgb(0, 195, 255) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

h1 {
  font-size: 1.75rem;
  font-weight: 200;
  margin-bottom: 1rem;
}

.container {
  width: 30rem;
  text-align: center;
  background-color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

p {
  font-size: .75rem;
  color: #000;
  margin-top: 3em;
  word-wrap: break-word;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.about {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.links {
  list-style-type: none;
}
.links li {
  margin-bottom: 2rem;
}

.links a {
  display: block;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, rgb(0, 174, 227) 0%, rgba(9,9,121,1) 50%, rgb(0, 174, 227) 100%);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
}

.links a:hover {
  background: linear-gradient(90deg, rgba(9,9,121,1) 0%, rgba(0, 174, 227) 50%, rgb(9,9,121,1) 100%);
}
