* {
  box-sizing: border-box;
}

html body {
  font-family: Arial, Helvetica, sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0b1d3a, #204d74);
}


.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.container {
  margin: 0;
  color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  min-height: 100vh;
  text-align: center;
  /* max-width: 800px; */
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.2em;
  margin: 0;
}

.post {
  text-align: left;
  background: linear-gradient(to bottom, #0b1d3a, #204d74);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(200,200,200,1);
  color: #efefef;
  min-width: 95vw;
}

.post h2 {
  margin-top: 0;
  font-size: 1.5em;
}

.post summary h2 {
  margin-top: 0;
  font-size: 1.5em;
}

.date {
  font-size: 0.9em;
  color: #aaaaaa;
  margin-bottom: 12px;
}

.post p {
  line-height: 1.6;
  margin-bottom: 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  color: #0070f3;
  text-decoration: none;
  font-size: 0.95em;
}

.back-link:hover {
  text-decoration: underline;
}

.cta-button {
  color: #fafafa;
  background-color: #0070f3;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-bottom: 35px;
  align-self: flex-start;
}

.cta-button:hover {
  background-color: #0059c1;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  header h1 {
    font-size: 1.8em;
  }

  .post h2 {
    font-size: 1.3em;
  }
}
