@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

h1 {
  font-size: 40px;
  font-weight: 500;
}

p {
  font-size: 14px;
  font-weight: 400;
  padding: 6px 24px 16px 24px;
}

.banner-wrap {
  background-image: url(./assets/banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 100vh; */
  width: 100vw;
}

nav {
  display: flex;
  justify-content: space-between;
  height: 56px;
  align-items: center;
  padding: 0 32px;
}

.nav-item {
  padding: 5px 15px;
  cursor: pointer;
}

.nav-item:hover {
  background-color: #d8d9da;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.logo {
  height: 24px;
  width: 120px;
}

main {
  text-align: center;
  height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.title-section {
  margin-top: calc(155px - 56px);
}

.actions-area {
  margin-bottom: 100px;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  background-color: yellow;
  width: 264px;
  height: 40px;
  padding: 7px 27px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  margin-right: 15px;
}

.btn-dark {
  background-color: #191d21;
  color: white;
}

.btn-light {
  background-color: #e4e4e2;
  color: #191d21;
}

.footer {
  background: black;
  color: white;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgb(47, 51, 54);
  opacity: 0.6;
  position: sticky;
}

.footer a {
  color: #1d9bf0;
  margin: 0 10px;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-logo h2 {
  font-weight: 700;
}

.footer-social a {
  margin: 0 8px;
}

@media (max-width: 1024px) {
  .middle-menu {
    display: flex;
    flex-direction: column;
  }
}