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

body {
    background-color:  hsl(233, 47%, 7%);
    font-size: 15px;
    line-height: 1.5;

}

h1 {
    color: hsl(0, 0%, 100%);
    font-family: 'Lexend Deca', sans-serif;
    line-height: 1.5;
    padding: 20px;
    
}
 h3 {
     color: hsl(0, 0%, 100%);
     font-family: 'Inter', sans-serif;
    
 }

 p {
     color: hsla(0, 0%, 100%, 0.75);
     font-family: 'Inter', sans-serif;
     font-weight: 400;
     padding: 20px;
    
 }
 span {
     color:  hsl(277, 64%, 61%);
 }
 
 ul {
     list-style: none;
 }
 
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 65vw;
    height: 480px;
    justify-content: center;
    background-color: hsl(244, 38%, 16%);
    border-radius: 10px;
    margin: 200px auto;
  
}
.container .main-text h1 {
    padding-top: 40px;  
    padding-left: 40px; 
    margin-top: 20px;
    margin-left: 20px; 
    font-size: 37px;
}
.container .main-text .main-paragraph {
    text-align: left;
    line-height: 1.7;
    margin: 15px 40px;
    color: hsla(0, 0%, 100%, 0.75);
    font-size: 16px;
}


.container .stats {
    display: flex;
    justify-content: space-around;
    margin: 60px 60px 0 20px;
    text-transform: uppercase;
    color: hsla(0, 0%, 100%, 0.6);
    font-family: 'Lexend Deca', sans-serif;  
    font-size: 12px;
}
.container .stats span {
    color: hsl(0, 0%, 100%);
    display: block;
    font-family: 'Inter', sans-serif; 
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 5px;
   
}
.img { 
    background-color: hsl(277, 64%, 61%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.img .img-desktop {
    height: 100%;
    width: 100%;
    mix-blend-mode: multiply;

  }


  @media screen and (max-width: 992px) {
    .container {
        display: flex;
        flex-direction: column-reverse;
        height: 100%;
        overflow: hidden;
    }

    .container .stats {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 20px;
    }

    .container .stats span {
        font-size: 25px;
        padding-bottom: 5px;
        padding-top: 15px;
    }

    .container .main-text .main-paragraph {
        text-align: center;
        margin: 0 10px;
    }

    .img {
        border-top-left-radius: 10px;
        border-bottom-right-radius: 0;
        
    }

    .container .main-text h1 {
        font-size: 30px;
        text-align: center;
        padding-top: 40px;
        margin-right: 10px;
        padding: 10px 6px 0 15px;
        margin: 25px 20px 0 15px;
        line-height: 1.3;
    }

    .attribution {
        display: none;
    }


    
  } 
