/* Reset default margins and padding for consistency across browsers */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #c7d4cd;
}

.container {
  display: flex;
  justify-content: center;

  align-items: center;
  width: 100vw;
  padding: 20px;
}

.homepage {
  height: 100vh;
}

img.centered-image {
  max-width: 80%;
  max-height: 80%;
  box-shadow: 0px 14px 19px 5px #00000033;
  border-radius: 20%;
}
