/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  min-height: 100vh;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
}

.logo-text span {
  color: #00A8FF;
}

/* Main content styles */
.app-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero section */
.hero {
  text-align: left;
  padding: 4rem 1rem;
}

.hero h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #00A8FF;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
  max-width: 700px;
}


/* Footer styles */
.app-footer {
  background-color: #f8f9fa;
  color: #555;
  text-align: center;
  padding: 2rem;
  margin-top: auto;
  border-top: 1px solid #eaeaea;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

blockquote {
  border-left: 2px solid grey;
  margin-left: 14px;
  margin-bottom: 24px;
  padding: 14px;
}
