@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", serif;
  background-color: #121c22;
  color: #fff;
  padding: 30px 10%;
  height: 100vh;
}
/*==================HEADER==================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.logo i {
  margin-right: 15px;
  color: #ff865b;
  font-size: 25px;
}
.logo span {
  color: #ff865b;
}
ul {
  display: flex;
  list-style: none;
}
li a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: 0.5s;
}
li a:hover {
  background-color: #ff865b;
  color: #000;
}
main {
  height: 80vh;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-section {
  width: 40%;
}
.img-section {
  width: 50%;
  margin-left: 50px;
}
.img-section img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  border: 5px solid #ff865b;
}
main h1 {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 20px;
}
main h1 span {
  color: #ff865b;
}
main p {
font-size: 16px;
color: #ccc;
margin-bottom: 30px;
font-weight: 300;  
}
.btn-container {
display: flex;
gap: 20px;  
}
button {
  padding: 15px 50px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.5s;
}
button i {
  font-size: 15px;
  margin-right: 10px;
}  
.primary-btn {
  background-color: #ff865b;
  color: #000;
  border: none;
}
.primary-btn:hover {
  background-color: #fff;
}
.secondary-btn {
  background-color: transparent;
  color: #ff865b;
  border: 2px solid #ff865b;
}
.secondary-btn:hover {
  background-color: #ff865b;
  color: #000;
}