@import url("https://fonts.googleapis.com/css2?family=TASA+Explorer:wght@400..800&display=swap");

html {
  font-family: "TASA Explorer", sans-serif;
  display: flex;
  font-size: 20px;
  flex-direction: column;
  place-items: center;
  margin: 0 1rem;
}

body {
  width: 100%;
}

@view-transition {
  navigation: auto;
}

form {
  margin: 1rem 0;
}

input {
  font-size: 0.8rem;
}

#create-post-btn {
  font-size: 0.9rem;
  color: black;
}

#posts-container {
  margin: 2rem 0;
}

.post * {
  text-decoration: none;
  color: black;
  margin: 0.2rem 0;
}

.post-metadata * {
  margin-right: 0.3em;
}

.post-title {
  text-decoration: underline;
}

.post-time {
  font-size: 0.8rem;
  color: #a5a58d;
}

.post-actions {
  text-decoration: underline;
  font-size: 0.7rem;
}

@media (min-width: 900px) {
  body {
    min-width: 40%;
    max-width: 40%;
  }

  .post-title {
    font-size: 1.7em;
  }

  form {
    margin: 0;
  }

  #form-and-btn {
    display: flex;
    gap: 1em;
  }
}
