* {
    font-family: "Inter", sans-serif;
    margin: 0;
    box-sizing: border-box;
    color: white;
}

body {
    background-color: hsl(233, 47%, 7%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    background-color: hsl(244, 38%, 16%);
    border-radius: 10px;
    width: auto;
    flex-direction: row; 
    overflow: hidden;
    height: auto;
}

.content h1{
    margin-bottom: 30px;
}

.content p{
    font-weight: lighter;
    font-size: 15px;
    line-height: 1.75;
}

.content-container {
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    justify-content: space-around; 
    padding: 5em;
    margin-right: 50px;

}

.scores {
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    margin-top: 4em;
}

.image {
    position: relative;
    background-color: hsl(277, 64%, 61%);
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.7; 
}

.scores p{
    text-transform: capitalize;
    font-weight: lighter;
    font-size: 12px;
}

@media screen and (max-width: 1024px) {
    .container {
        margin: 1.5rem;
      flex-direction: column-reverse;
      max-width: 540px;
    }
  
    .content-container {
      padding: 2.5rem;
      text-align: center;
      margin-right: 0;
    }
  
    .scores {
      flex-direction: column;
      gap: 2rem;
    }
  
    h1 {
      font-size: 1.8rem;
    }
    .image {
        height: auto;
    }
  }
  
  @media screen and (max-width: 375px) {
    .container {
      margin: 1.5rem;
    }
  
    .content-container {
      padding: 2rem 1.5rem;
    }
  
    h1 {
      font-size: 1.5rem;
    }
  
    .content p {
      font-size: 0.9rem;
    }
    
  }