:root {
  --pale-purple: #a6a2dc;
  --purple: #7473bd;
  --dark-purple: #7473bd;
  --pale-coral: #ffacac;
  --coral: #ff7979;
  --neon-purple: #9d8dff;
  --dark-neon-purple: #4a49cb;
  --navy: #2c3f6b;
}

body {
  margin: 0;
  font-family: Helvetica Neue, sans-serif;
  background: #eee;
  height: 200vh;
  background: repeating-linear-gradient(-45deg, #eee, #eee 20px, #e8e8e8 20px, #e8e8e8 40px);
}

.navbar {
  position: fixed;
  width: 100%;
}

.background {
  position: absolute;
  width: 100%;
  height: 150px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 20px;
  background: white;
  z-index: -1;
}

.logo {
  position: absolute;
  width: 100px;
  height: 100px;
  transform: translate(20px);
}

.text {
  position: absolute;
  font-size: 50px;
  font-weight: light;
  color: var(--dark-purple);
  margin-left: 100px;
  transform: translate(20px, 20px);
}

.navigation {
  display: flex;
  position: absolute;
  transform: translate(10px, 100px);
}

.navigation > a {
  padding: 10px;
  cursor: pointer;
}

.navigation > a:hover {
  background: #eee;
}

.background,
.logo,
.text,
.navigation {
  transition: transform 400ms;
}

/* EDIT BELOW THIS LINE */

.scrolled .background {
  transform: translateY(-75px);
}

.scrolled .logo {
  transform: scale(0.5, 0.5) translate(-20px, -30px);
}

.scrolled .text {
  transform: translateY(-100px);
}

.scrolled .navigation {
  transform: translate(70px, 15px);
}
