body {
    background-color: lightgreen;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 80vh;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
}
div {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  height: 100%;
  border: 4px solid green;
}
  div:hover {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.6);
  }
footer {
  width: 100%;
  text-align: center;
  flex-grow: 0;
}
  footer div {
    border: none;
    box-shadow: none;
    color: green;
    max-height: 25%;
  }
  footer div:hover {
    background-color: white;
    box-shadow: none;
  }
h1 {
  color: green;
  text-align: center;
}
header {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  color: blue;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 0;
}
img {
  display: flex;
  margin: 0 auto;
  padding-top: 2rem;
  border-radius: 75px;
}
p {
    font-family: verdana;
    font-size: 20px;
}
