@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=Open+Sans&family=Poppins:wght@200;400;600&display=swap');

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
    box-sizing: border-box;
  }
  * {
    margin: 0;
    padding: 0;
  }
  html, body {
    height: 100%;
  }
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  input, button, textarea, select {
    font: inherit;
  }
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  #root, #__next {
    isolation: isolate;
  }
  :root {
    --Violet: hsl(257, 40%, 49%);
    --Soft-Magenta: hsl(300, 69%, 71%);
  }

  body {
    background-color: var(--Violet);
    
  }






                                                                /* Class Selectors */
  

  
                                                                
.attribution { 
    font-size: 11px;
    text-align: center;
     }
.attribution a { 
    color: hsl(228, 45%, 44%); 
}

                                                                /* media query */

@media only screen and (min-width: 625px) {

  body {
    background-image: url(/images/bg-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: fit-content;
  }

  .logo {
    max-width: 250px;
    margin: 3.125rem 0 0 400px;
  }

  .container {
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 6.25rem;
    margin: 6.5625rem auto;
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    font-size: 1.5625rem;
  }
  
  .container p {
    max-width: 400px;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1.25rem;
  }
  
  button {
    background-color: hsl(0, 0%, 100%);
    margin: 2.5rem auto 0 auto;
    min-width: 230px;
    padding: 0.5625rem;
    border-radius: 2.5rem;
    color: var(--Violet);
    box-shadow: 13px 1px 3px 10px var(--Violet);
    border: none;
    font-size: 1rem;
    font-weight: 400;
}

.media {
  display: flex;
  justify-content: flex-end;
  margin: 0 4.6785rem;
  gap: 1.25rem;
}

.fa-brands {
  font-size: 1.25rem;
  border: 1px solid hsl(0, 0%, 100%);
  border-radius: 50%;
  padding: 0.625rem;
  color: hsl(0, 0%, 100%);
}

}                                                                
                                
@media only screen and (max-width:600px) and (min-width: 200px) {
    body {
        background-image: url(/images/bg-mobile.svg);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: 28.25rem;
        font-size: 1rem;
        height: fit-content;
    }

    .logo {
        width: 7.8125rem;
        margin: 1.875rem 0 0 1.875rem;
    }
    
    figure {
        width: 80%;
        margin: 3.125rem auto;
    }
    
    .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 3.125rem;
    }

    h2 {
        text-align: center;
        color: hsl(0, 0%, 100%);
        margin-bottom: 20px;
        font-weight: 600;
        font-size: 1.5625rem;
        font-family: 'Poppins', sans-serif;
    }

    .content p {
        text-align: center;
        width: 75%;
        margin: 0 auto;
        color: hsl(0, 0%, 100%);
        font-weight: 400;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.0625rem;
    }

    button {
        background-color: hsl(0, 0%, 100%);
        margin: 1.25rem auto 0 auto;
        min-width: 230px;
        padding: 9px;
        border-radius: 1.25rem;
        color: var(--Violet);
        box-shadow: 13px 1px 3px 10px var(--Violet);
        border: none;
    }

    footer {
        display: flex;
        justify-content: center;
    }

    .media {
        display: flex;
        gap: 15px;
    }

    .fa-brands {
        border: solid 1px hsl(0, 0%, 100%);
        border-radius: 50%;
        color: hsl(0, 0%, 100%);
        padding: 0.75rem;

    }

    .attribution {
        position: fixed;
        bottom: 0;
    }
}
