* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  /* background-color: #4b0082; */
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  color: #fff;
}

.container {
  max-width: 130rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  margin: 0 auto;
  /* min-height: 100vh; */
}

header {
  display: flex;
  justify-content: center;
}

.purplle-hut-logo {
  width: 100%;
  /* max-width: 800px; */
  max-width: 800px;
}

.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
}

/* .main-heading {
  font-size: 20vw;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
} */

.main-heading {
  /* font-size: clamp(4rem, 15vw, 20rem); */
  font-size: 10rem;
  font-weight: bold;
  /* width: 100%; */
  /* line-height: 5rem; */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  align-items: center;
  gap: 2rem;
}

.locate-us {
  grid-column: 1 / -1;
  padding: 1rem;
}

.locate-us h2 {
  text-decoration: underline;
}

.address {
  font-style: normal;
  font-size: 1.5rem;
  line-height: 2rem;
}

.address-title {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 2rem;
}

.copyright {
  grid-column: 1 / -1;
  padding: 1rem;
  margin-top: 4rem;
  text-align: center;
}
