* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: 0;
  border: 0;
}

h1 {
  font-size: 4em;
}

body {
  display: flex;
  place-content: center;
  align-items: center;
  width: 100%;
  min-height: 100dvh;
  flex-direction: column;
  background-color: #f8f8f8;
  gap: 24px;
}

input {
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 20px;
  outline: none;
  border-width: 1px;
  min-width: 60vw;
  width: 100%;
  background-color: white;
  font-weight: 200;
  transition: box-shadow 0.2s;
  box-shadow: 8px 8px 0px #fcc419, -8px -8px 0px #ff6b6b, -8px 8px 0px #ff6b6b,
    8px -8px 0px #fcc419;
}

input::selection {
  box-shadow: 4px 4px 0px #fab005;
}
