@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: lightgrey;
}
.header {
  width: 100%;
  height: 60px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header h2 {
  color: white;
}
h1,
h2 {
  font-family: "Ubuntu", sans-serif;
}
h1 {
  color: blueviolet;
}
.profile {
  text-align: center;
  margin-top: 20px;
}
img {
  height: auto;
  width: 280px;
}
img {
  margin-top: 10px;
}
.profession {
  font-size: 20px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
ul {
  margin: 40px;
}
li {
  font-size: 18px;
  margin: 5px;
  font-family: Arial, Helvetica, sans-serif;
  list-style-type: square;
}
a:hover {
  color: red;
}
a:visited {
  color: blue;
}
.wikipedia p {
  margin: 20px;
  font-size: 20px;
}
footer {
  background-color: black;
  color: white;
  text-align: center;
}
