* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 12px;
  flex-direction: column;
}

#joke {
  width: 800px;
  height: 450px;
  padding-left: 12px;
  font-size: 30px;
  font-weight: 450;
  flex-direction: column;
  position: relative;
  border: 2px solid #78CECC;
  border-radius: 12px;
  overflow-x: hidden;
  overflow-y: auto;
}

.btn {
  position: relative;
  top: 17px;
}

.btn button {
  background-color: #78CECC;
  color: white;
  padding: 10px 20px;
  font-size: 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: lightblue;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb {
  background: #7F8CB5;
  border-radius: 23px;
}
