* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  font-size: 60%;
  scroll-behavior: smooth;
}

body {
  font-family: "PT Sans", sans-serif;
}

.heading {
  font-size: 4.5rem;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
  padding-bottom: 1.5rem;
}

.text-primary {
  font-size: 2rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.text-primary span {
  margin-bottom: 1rem;
  display: block;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 100px -5px #eee;
  z-index: 1000;
  background: #fff;
}

.head-logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.head-logo {
  margin-right: 1.5rem;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 10rem;
}

.head-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.head-logo-text {
  font-size: 2rem;
  letter-spacing: 1px;
  color: #000;
  font-weight: 400;
}

.home {
  display: flex;
  height: 100vh;
}

.home-content {
  max-width: 120rem;
  margin: auto;
  width: 90%;
}

.btn {
  font-family: inherit;
  letter-spacing: 1px;
  font-weight: 700;
  border: none;
  box-shadow: none;
  cursor: pointer;
  padding: 1.5rem 3.5rem;
  font-size: 2rem;
  border-radius: 5px;
  border: 2px solid rgba(30, 160, 240, 1);
  background: rgba(30, 160, 240, 1);
  color: #fff;
  box-shadow: 0 5px 15px 0 rgb(0 0 0 / 15%);
}

@media (max-width: 60em) {
  html {
    font-size: 50%;
  }
}
