@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Inter:wght@400;700&family=League+Spartan:wght@400;500;700&family=Lexend+Deca&family=Poppins:wght@200;400;600&display=swap');



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

:root {
    --Very-Dark-Magenta: hsl(300, 43%, 22%);
    --Soft-Pink: hsl(333, 80%, 67%);
    
    /* ### Neutral */
    
    --Dark-Grayish-Magenta: hsl(303, 10%, 53%);
    --Light-Grayish-Magenta: hsl(300, 24%, 96%);
    --White: hsl(0, 0%, 100%);
}

body {
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    background-color: var(--White);
    background-image: url(/images/bg-pattern-top-desktop.svg), url(/images/bg-pattern-bottom-desktop.svg);
    background-repeat: no-repeat;
    background-position: bottom 50% right 50%, top 100% left 100%;
}

main {
    display: grid;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    align-content: center;
}

h1 {
    font-weight: 700;
    font-size: 3.125rem;
    color: var(--Very-Dark-Magenta);
    margin-bottom: 1.25rem;
}

h2 {
    color: var(--White);
    font-weight: 400;
    font-size: 1rem;
    margin: 0.625rem 0 0 5rem;
    
}

/* Tag Selector */
.container1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 2.5rem;
    padding-left: 7.5rem;
    width: 50%;
}

.header {
    width: 50%;
}

.header-text {
    max-width: 375px;
}

.header p {
    color: var(--Dark-Grayish-Magenta);
    font-weight: 500;
    font-size: inherit;
    line-height: 1.25rem;
}

.stats {
    width: 50%;
    margin-left: 1.875rem;
}
.stats p {
    text-align: center;
    color: var(--Very-Dark-Magenta);
    font-weight: 500;
}
.stars {
    margin-right: 0.625rem;
}

.stats-text {
    background-color: var(--Light-Grayish-Magenta);
    margin-bottom: 1.25rem;
    padding: 0.9375rem;
    width: 25rem;
    border-radius: 7px;
    /* background-image: url(/images/icon-star.svg); */
    /* background-repeat: repeat-x; */
}

.stats-text2 {
    margin-left: 2.5rem;
}

.stats-text3 {
    margin-left: 5rem;
}

.review {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 6.25rem;
    margin-left: 6.25rem;
    
}

.review p {
    color: var(--Light-Grayish-Magenta);
    margin-top: 1.25rem;
    line-height: 1.5;
    font-size: inherit;
}

.review-text {
    background-color: var(--Very-Dark-Magenta);
    max-width: 250px;
    height: 12.5rem;
    margin-right: 1.25rem;
    border-radius: 7px;
    padding: 0.625rem;
    
}

.review-text2 {
    margin-top: 2.5rem;
}

.review-text3 {
    margin-top: 5rem;
}

.verified {
    display: block;
    font-weight: 200;
    color: var(--Soft-Pink); 
}

.review-top {
    display: flex;
    flex-direction: row;
}

.headshot {
    position: absolute;
    border-radius: 50%;
    width: 2.1875rem;
    margin: 0.625rem 0 0 1.25rem;
    display: ;
    
}

.attribution {
    font-size: 0.8125rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100vw;
    margin: 0 auto;
  }

  .attribution a {
    color: hsl(228, 45%, 44%);
  }

  @media only screen and (max-width: 600px) {
    body {
        background-image: url(/images/bg-pattern-top-mobile.svg), url(/images/bg-pattern-bottom-mobile.svg);
        background-repeat: no-repeat;
        background-position: top 0 left 25px, bottom 0 right 25px;
        margin: 0;
        padding: 0;
    }

    main {
        display: flex;
        flex-direction: column;
    }

    .container1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .header {
        min-width: 200px;
        margin-right: 100px;
        text-align: center;
        margin-bottom: 20px;
    }

    .stats {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 100px;
    }

    .stats-text {
        min-width: 200px;
        margin: 0 12.5rem 1.25rem 0;
        font-weight: 500;
    }

    .stats-text span {
        display: block;

    }

    .review {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 3.125rem;
        margin-top: 0.625rem;
    }

    .review-text3 {
        margin-top: 1.875rem;
    }

    h1 {
        font-size: 1.5625rem;
    }

    .attribution {
        position: relative;
        margin-top: 1.25rem;
    }
  }
