body {
  font-family: "Inter", sans-serif;
  color: rgb(33, 33, 33);
  line-height: 1.7;
}

a {
  color: #ff7f4a;
  text-decoration: none;
}

h1,
h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 42px;
  line-height: 60px;
}

h2 {
  font-size: 28px;
  line-height: 40px;
}

p,
li {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
}

#logo {
  height: 28px;
  padding-top: 1.3rem;
  padding-left: 0.8rem;
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: #ff7f4a;
  z-index: 2000;
}

main {
  max-width: 700px;
  margin: 100px auto 0;
  padding: 0 1rem;
}

#article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

#article-info {
  color: #848484;
  font-size: 14px;
}

#author {
  color: #ff7f4a;
}

#social-buttons {
  display: inline-flex;
  background-color: #ff7f4a;
  border-radius: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: none;
  background: transparent;
}

.social-btn img {
  width: 16px;
  height: 16px;
}

.social-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.warning-box,
.information-box {
  border-radius: 8px;
  padding: 10px;
}

.warning-box {
  background-color: #fff9c4;
}

.information-box {
  background-color: #d9f0ff;
}

.article-image {
  border-radius: 8px;
  max-width: 100%;
  margin: 10px 0;
  display: block;
}

#button-container {
  text-align: center;
  margin: 30px 0;
}

#try-youform {
  background-color: #ff7f4a;
  color: white;
  border-radius: 4px;
  padding: 10px 20px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
