:root {
  --colors-brown: #090b0b;
  --colors-red: #de4335;
  --colors-pink: #ff7e42;
  --colors-yellow: #f0c528;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: 'Rubik';
}

html {
  height: 100%;
}

body {
  box-sizing: border-box;
  height: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a:focus-visible {
  outline: 1px solid white;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px black;
}
