@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Work+Sans:wght@300;400;500;600&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  padding: 10px;
  background-color: #e7eaf0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.title {
  font-size: 2rem;
  font-weight: 600;
  color: #142546;
  margin-bottom: 20px;
  text-align: center;
  line-height: 40px;
}

.dn-btn {
  cursor: pointer;
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 5px 10px;
  background-color: white;
  border: 1px solid #142546;
  border-radius: 5px;
  text-decoration: none;
}

.dn-btn > p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #142546;
}
