/* style.css */

/* General page styling */
body {
  background-color: rgb(96, 75, 170);
  color: white;
  font-family: 'Exo 2', sans-serif;
  text-align: center;
}

/* Avatar image */
img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 20px;
}

.gif{
  border-radius: 100;
}
/* Links */
a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

a:hover {
  color: yellow;
}
