/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: "Ranchers", sans-serif;
  
}

body {
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 48px;
}

h1{
    color:white;
    font-size: 100px;
    letter-spacing: 9px;
    font-weight: 400;
    filter: drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.314));
}
p{
    color:white;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 5px;
    filter: drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.314));
}


body {
  background-image: url("./assets/desktop-view.webp");
}

@media screen and (max-width: 767px) {
  body {
    background-image: url("./assets/mobile-view.webp");
    background-attachment: scroll; /* Better performance on mobile */
    padding:24px
  }
  h1{
    font-size: 35px;
    letter-spacing:6px;
    margin-top: 48px;
  }
  p{
    font-size: 20px;
    letter-spacing:4px
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  body {
    background-image: url("./assets/desktop-view.webp");
  }
}

@media screen and (max-width: 480px) {
  body {
    background-image: url("./assets/mobile-view.webp");
    background-size: cover;
    background-position: center;
  }
}
