body {
  margin: 0;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.quote-container {
  background-color: #fff;
  padding: 40px;
  margin:40px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.emoji {
  font-size: 72px;
}

.quote {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 40px;
}

.author {
  font-style: italic;
  font-size: 16px;
}
.new-quote-btn {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  outline: none;
}

.new-quote-btn:hover {
  background-color: #000;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .quote-container {
    padding: 20px;
  }

  .emoji-container {
    font-size: 48px;
  }

  .quote {
    font-size: 18px;
  }

  .new-quote-btn {
    padding: 5px 10px;
    font-size: 16px;
  }
}
