/* Initial Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

/* Utility */

/* Custom Style */

.header {
  border-bottom: 1px solid #ddd;
}

.logo-text {
  font-weight: 700;
}

.my-button {
  background: #333;
  border: 1px solid #333;
}

.content-left h1 {
  font-weight: 700;
  font-size: 60px;
}

.content-left h3 {
  font-weight: 700;
}
