@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@300;400;700&display=swap');

.gaegu-bold {
  font-family: "Gaegu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  background-color: #fa98a9;
  font-family: "Verdana", Sans-Serif;
  font-size: 13.5px;
}

h1, h2, h3, h4 {
  font-family: "Gaegu", sans-serif;
  margin: 10px;
  transition: 0.3s;
}

a {
  color: #f53371;
  transition: 0.3s;
}

h2:hover, a:hover {
  letter-spacing: 3px;
  color: #f0185c;
}

section {
  background-color: white;
  padding: 5px;
  margin: auto;
  border: 2px dashed red;
  width: 1000px;
  border-radius: 10px;
  outline: 4px solid white;
  display: flex;
  flex-direction: row;
  
}

#left {
  width: 50%;
}

#right {
  width: 50%;
}

#info {
height: 370px;
padding: 10px;
margin-bottom: 10px;
}

.desc {
  display: block;
  overflow: auto;
  height: 100%;
}

.highlight {
  font-weight: bold;
  color: white;
  text-shadow: -1px 0 #fa98a9, 0 1px #fa98a9, 1px 0 #fa98a9, 0 -1px #fa98a9;
}

#meaning {
  padding: 5px;
}

#collection {
  overflow: auto;
  max-height: 1000px;
  height: 100%;
  width: 100%;
}

#collection img {
  width: 100%;
}

.kitty {
  height: 170px;
}

@media (max-width:800px) {
  section {
    flex-direction: column;
    width: 100%;
  }
  
  #left, #right {
    width: 100%;
  }
}