@media (min-width: 48rem) {
    :root {
      font-size: calc(1rem + ((1vw - .48rem) * 1.389));
      /* .48rem = viewportWidthMinimum /100 */
      /* 1.389rem = 100 * fontSizeDifference / viewportWidthDifference */
    }
  }
  
  @media (min-width: 120em) {
    :root {
      font-size: 2rem;
    }
  }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #363636;
    overflow: hidden;
    font-size: .4rem;
}

a{
    color:brown;
}


.eczar {
    font-family: "Eczar", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.sacramento-regular {
    font-family: "Sacramento", cursive;
    font-weight: 400;
    font-size: 2em;
    font-style: normal;
}

.cutive-mono-regular {
    font-family: "Cutive Mono", monospace;
    font-weight: 400;
    font-style: normal;
  }

.backgroundimage{
    display: block;
    position: absolute;
    top: 0;
    left:0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}
.backgroundimage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
}
.container{
    position: relative;   
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.hero{
    width: 60%;
    position: relative;
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(5, 1fr);
}

.title{
    grid-column: span 5;
    margin-left: 5rem;
}
.title span{
    margin-right: -.2rem;
}
.title p{
    display: inline-block; 
    line-height: .4;
    font-size: 4rem
}
.first{
    margin:0;
}
.limited{
    margin:-.5rem 0 0 8.6rem;
    
}
.estate{
    margin: 0 0 0 -5.2rem;
}
.info{
    font-size: 1rem;
    justify-self: center;
}
.info.last{
    
}
h2{
    margin: 0;
}
.contact{
    font-size: .8rem;
    grid-column: span 5;
    text-align: center;

}

@media only screen and (max-width: 600px){
    .info{
        grid-column: span 5;
        text-align: center;
        margin: 0
    }
    .info.last{
        justify-self: center ;
        grid-column: span 5;
    }

    .contact{
        margin-top: 1rem;
    }
    .title{
        margin: 0 0 1rem 0;
    }
    .title p{
        font-size: 2.5rem
    }
    .first{
        margin:0 0 0 1rem;
    }
    .limited{
        margin:0 0 0 -1rem;
        
    }
    .estate{
        margin: 0 0 0 -1.3rem ;
    }
    
}