body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  background: linear-gradient(to top, #222831, #393e46);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #ececec;
}

.avatar img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.contact img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  background: transparent;
  border-radius: 80%;
}

.contact img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  outline: none;
}

h1 {
  color: #f5f5f5;
}

h2 {
  color: #a0a0a0;
}
