*, *::before, *::after {
  box-sizing: border-box;
} 
  
body {
  background-color: #FFCC01;
}

.logo {
  display: block;
  width: 50%;
  margin: 0 auto;
}

img {
  width: auto;
  height: auto;
}

.img-bordered {
  border: 1px dashed brown;
}

.dialog {
  border-style: dashed double;
  border-color: brown;
  padding: 10px;
}

.choices {
  margin: 20px 0;
}

.result {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.sad-pikachu {
  transition: transform 0.3s ease-in-out;
}

.sad-pikachu:hover {
  transform: scale(1.05);