:root {
  --blue: deepskyblue;
  --white: #ffffff;
}

.flex-container {
  display: flex;
  background-color: var(--blue);
}

.flex-container > div {
  background-color: var(--white);
  margin: 10px;
  padding: 30px;
  font-size: 2em;
}

canvas {
  transition: width 2s;
}

canvas:hover {
  width: 200px;
}

@font-face {
  font-family: customFont;
  src: url(race.ttf);
}

h1 {
  font-family: customFont;
}

body {
  background-color: var(--white);
}

@media screen and (min-width: 1000px) {
  body {
    background-color: aliceblue;
  }
}
