* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

body {
  min-height: 100vh;
  background-color: #102e50;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: inherit;
}

.winky-sans {
  font-family: "Winky Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.pixelify-sans {
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.container {
  width: 1000px;
  height: 700px;
  padding: 1em;
  display: flex;
  gap: 1em;
  text-align: center;
}

.col-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.row {
  flex: 1;
  border-radius: 1em;
  display: flex;
  gap: 1em;
}

/* Wordle (thumal) */
.row-1 {
  background-color: #03a637;
  align-items: center;
  justify-content: center;
  color: white;
}

.row-1 > a {
  font-size: 48px;
  text-decoration: none;
}

.row-1:hover {
  cursor: pointer;
  box-shadow: 0px 0px 8px #81ffa9;
  background-color: #102e50;
  color: #03a637;
}

/* Conways Game of Life */
.row-2 {
  background-color: black;
  align-items: center;
  justify-content: center;
  color: white;
}

.row-2 > a {
  font-size: 46px;
  text-decoration: none;
}

.row-2:hover {
  cursor: pointer;
  box-shadow: 0px 0px 8px black;
  background-color: #102e50;
  color: black;
}

.row-col {
  flex: 1;
  border-radius: 1em;
}

/* Cellular Automata Custom Rules */
.left {
  background-color: #f5c45e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.left > a {
  font-size: 36px;
  text-decoration: none;
}

.left:hover {
  cursor: pointer;
  box-shadow: 0px 0px 8px #ffe1a1;
  background-color: #102e50;
  color: #f5c45e;
}

.right {
  background-color: #e78b48;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.right > a {
  font-size: 36px;
  text-decoration: none;
}

.right:hover {
  cursor: pointer;
  box-shadow: 0px 0px 8px #ffba88;
  background-color: #102e50;
  color: #e78b48;
}

.top {
  background-color: #00ca73;
  align-items: center;
  justify-content: center;
  color: white;
}

.top > a {
  font-size: 36px;
  text-decoration: none;
}

.top:hover {
  cursor: pointer;
  box-shadow: 0px 0px 8px #86feca;
  background-color: #102e50;
  color: #00ca73;
}

.bottom {
  background-color: rgb(166, 1, 158);
  align-items: center;
  justify-content: center;
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background-color: #8cc2ffb4; /* Adjust color here */
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
