
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  width: 100%;
  height: 100vh;
  font-family: "Jost", sans-serif;
  background-image: url(img/P.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  color: #222;
  overflow: hidden;
}


main {
  padding: 0 210px;
  margin: 0 auto;
}
 a{
  text-decoration: none;
  list-style-type: none;
 }
.header {
  margin-top: 60px;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-radius: 50px;
  background: #FEFAEE;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}


.logo {
  width: 200px;
  height: auto;
}

.nav-box {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}


.cic {
width: 40px;
height: 40px;
flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #000;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}


.cic1 {
  background-color: #fe9687;
}
.cic2 {
  background-color: #fddd62;
}
.cic3 {
  background-color: #d1adfe;
}
.cic4 {
  background-color: #2cd5cd;
}


.btn {
  background-color: #000;
  color: #fff;
  border: none;
  width: 192px;
  height: 60px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s ease-in-out;
  border-radius: 50px;
  text-decoration: none;
  text-decoration-thickness: 10%;
  text-underline-offset: 7px;
}

.btn:hover {
  text-decoration: underline;
}
.section {
  margin-top: 60px;
  max-width: 733px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0 62px;
  margin-top: 100px;
}


.date {
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  color: #111;
}

.sent {
  font-size: 42px;
  font-style: italic;
  font-weight: 600;
  color: #111;
}

.title {
  font-size: 42px;
  font-weight: 600;
  color: #111;
}

.para {
  font-size: 22px;
  line-height: 34px;
  color: #000;
  margin-bottom: 40px;
}

