@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
:root {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
  height: 100svh;
  display: flex;
}

.col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.col h2 {
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  transition: all 0.2s ease-in;
}
.col h2:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.col button {
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 10px;
  background-color: transparent;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.2s ease-in;
  aspect-ratio: 1;
}
.col button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */