* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  background: rgb(142, 219, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(56, 56, 56);
}
.container {
  width: 1200px;
  padding: 10%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
.card {
  width: 700px;
  min-height: 500px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 20px 25px 20px rgba(225, 0, 255, 0.25);
}
.card h1 {
  font-size: 36px;
  font-weight: 500;
  padding: 1rem 0;
}

.button-container {
  background-color: rgb(240, 240, 240);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 1rem;
}
.btn {
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 10px;
  background: grey;
  font-size: 15px;
  font-weight: 700;
  color: white;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.btn:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.65);
}
.icon-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.btn-new {
  background-color: blue;
}
.btn-copy {
  background-color: rgb(212, 212, 212);
  color: rgb(32, 32, 32);
}
.btn-share {
  background-color: rgb(2, 157, 230);
}
.card .horizontal-line {
  border: 1px solid rgb(189, 189, 189);
  width: 90%;
  margin: 0 auto;
  opacity: 0.3;
}
.display-quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.quote {
  font-style: italic;
  font-size: 40px;
}
.display-quote .author {
  font-weight: 500;
  margin-top: 1rem;
}
.inverted {
  font-size: 50px;
  margin-top: 0;
}
.small-quote {
  position: absolute;
  font-size: 10px;
}

.button-container {
  position: relative;
}

.copy-feedback {
  font-size: 26px;
  position: absolute;
  top: 25%;
  right: 5px;
  color: green;
}
