* {
  font-family: sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


h1 {
  font-size: 5em;
}

body {
  background-color: black;
  color: white;
  margin: 0;
  width: 100dvw;
  height: 100dvh;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#title {
  padding: 50px;
  text-align: center;
}

#content {
  display: grid;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
}

#colors {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto;
  padding: 5%;
}

/*
.color1 {
  width: 100%;
  aspect-ratio: 1;
  margin: 15%;
  border-radius: 15px;
  transition: box-shadow 200ms ease-in-out;
}
*/

.color {
  width: 100%;
  aspect-ratio: 1;
  margin: 15%;
  border-radius: 100%;
  transition: box-shadow 200ms ease-in-out;
}

/*
.color3 {
  width: 100%;
  aspect-ratio: 1.5;
  margin: 15%;
  border-radius: 15px;
  transition: box-shadow 200ms ease-in-out;
}
*/