/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  color: #123832;
  font-family: Calibri;
  min-height: 100vh;

  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.85), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(175, 255, 226, 0.9), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(210, 180, 255, 0.45), transparent 35%),
    linear-gradient(
      135deg,
      #c8ffd4 0%,
      #8fffd2 28%,
      #d7ff8f 52%,
      #b2f7ff 74%,
      #e5d4ff 100%
    );

  background-attachment: fixed;
}

main {

  display: flex;
  flex-direction: column;
}

.emote-lg {
  width: 112px
  }
  
.emote-md {
  width: 56px;
  }


.emote-sm {
  width: 28px;
  }


  

.card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  border-style: double;
  box-shadow: 0 8px 30px rgba(80, 180, 140, 0.25);
  color: #10221f;
  padding: 20px;
  margin: 20px;
}

ul {
  list-style-type: none}

footer {
  background: lime;}
