/* style.css */

/* Reset basic margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  background-color: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emote-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 50vw;
  max-height: 50vh;
  width: 50vw;
  height: 50vh;
}

.emote-container span {
  font-size: 33vmin;
  line-height: 1;
}
