* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgb(23, 45, 133);
  background: linear-gradient(170deg, rgba(23, 45, 133, 1) 0%, rgb(26, 168, 211) 56%, rgb(213, 252, 250) 100%);
}

.logo {
  height: 30rem;
  -webkit-filter: drop-shadow( 1px 1px 1px rgba(0, 0, 0, .3));
  filter: drop-shadow( 1px 1px 1px rgba(0, 0, 0, .3));
}