body {
  font-family: "Courier New", monospace;
  margin: 0;
  padding: 0;
}

.header {
  background-color: #512888;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 450px;
  box-shadow: 0px 0px 5px black;
}

.header h1 {
  font-size: 3vmax;;
  margin-bottom: 0px;
  text-transform: uppercase;
  text-shadow: 0px 0px 12px black;
}

.header img {
  width: 200px;
  border-radius: 50%;
  box-shadow: 0px 0px 12px black;
}

.header h3 {
  font-size: 1.5vmax;
  text-transform: capitalize;
  text-shadow: 0px 0px 10px black;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

ul {
  width: 30%;
  list-style: none;
  padding: 0;
  margin: 0;}

li {
  margin-bottom: 30px;
  font-weight: bold;
}

a {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 1vmax;
  color: #333;
  padding: 20px 0;
  border: 3px solid #512888;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  box-shadow: 0px 0px 8px #371b5d;
}

a:hover {
  background-color: #512888;
  color: #fff;
}

