* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Regular.woff2') format('woff2'),
  url('fonts/Roboto-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body { font-family: "Roboto", sans-serif; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1f2937;
  padding-bottom: 40px;
}

.header {
  display: flex;
  justify-content: space-between;
  width: 70%;
  padding: 12px 0 48px 0;
}

.header > h1 {
  color: #f9faf8;
  font-size: 24px;
}

.header > ul {
  display: flex;
  gap: 12px;
}

.header > ul > li {
  color: #e5e7eb;
  font-size: 18px;
}

.hero-section-content {
  display: flex;
  gap: 20px;
  width: 70%;
}

.hero-section-content > img {
  width: 50%;
  border-radius: 12px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #2e2e2e;
}

.hero-section-content > :first-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-section-content > :first-child button {
  padding: 8px 16px;
  background-color: #3882f6;
  color: #fff;
  border: none;
  font-weight: 900;
  border-radius: 12px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #2e2e2e;
  cursor: pointer;
}

.hero-section-content > :first-child > p:nth-child(1) {
  font-size: 48px;
  color: #f9faf8;
  font-weight: 900;
}

.hero-section-content > :first-child > p:nth-child(2) { color: #e5e7eb; }

.random-info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 50px;
}

.random-info-section > p {
  font-size: 36px;
  color: #1f2937;
  font-weight: 900;
}

.info-cards {
  display: flex;
  gap: 24px;
}

.info-cards > div { width: 200px; }

.info-cards > div > img {
  border: 2px solid #3882f6;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.info-cards > div > p { color: #4b5563; }

.quote-section {
  background-color: #e5e7eb;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-section > div {
  width: 60%;
}

.quote-section > div > p:nth-child(1) {
  color: #1f2937;
  font-size: 36px;
  font-weight: 300;
}

.quote-section > div > p:nth-child(2) {
  text-align: end;
  font-weight: 600;
  color: #1f2937;
}

.action-section {
  padding: 50px;
}

.action-section > div {
  background-color: #3882f6;
  width: 70%;
  margin: auto;
  padding: 16px 50px;
  border-radius: 12px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #2e2e2e;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-text > p:nth-child(1) {
  font-size: 18px;
  font-weight: 600;
  color: #f9faf8;
}

.action-text > p:nth-child(2) {
  color: #e5e7eb;
}

.action-btn {
  padding: 8px 16px;
  background-color: transparent;
  color: #fff;
  border: none;
  font-weight: 900;
  border-radius: 12px;
  border: 1px solid #2e2e2e;
  cursor: pointer;
}

.footer {
  background-color: #1f2937;
  padding: 26px;
  color: #fff;
  text-align: center;
}