@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&display=swap');

:root {
--very-dark-blue: hsl(233, 47%, 7%);                    /* main background */
--dark-desaturated-blue: hsl(244, 38%, 16%);            /* card background */
--soft-violet: hsl(277, 64%, 61%);                      /* accent */
--white: hsl(0, 0%, 100%);                              /* main heading, stats */
--slightly-transparent-white-zsvf: hsla(0, 0%, 100%, 0.75);  /* main paragraph */
--slightly-transparent-white-zsx: hsla(0, 0%, 100%, 0.6);   /* stat headings */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--very-dark-blue);
  font-size: 17px;
}
.container {
  display: flex;
  overflow: hidden;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 1105px;

  background-color: var(--dark-desaturated-blue);
  border-radius: 10px;
}
.img-container.mobile {
  display: none;
}
.container-left {
  width: 379px;
  margin: 0px 116px 0 70px;
}
.container-left h1 {
  margin-top: 71px;
  margin-bottom: 32px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 41px;
}
.container-left h1 span {
  color: var(--soft-violet);
}
.container-left p {
  font-size: 15px;
  margin-bottom: 73px;
  color: var(--slightly-transparent-white-zsvf);
  line-height: 24px;
}
.container-right img{
  display: inline-block;
  background-color: var(--soft-violet);
  opacity: .6;
}
.container-right .img-container{
  width: 540px;
  height: 446px;
  background-color: var(--soft-violet);
}

.achievements {
  display: flex;
  width: 262px;
  height: 50px;
}
.achievements-items {
  font-size: 16px;
  margin-right: 54px;
}
.achievements-items h2 {
  color: var(--white);
}
.achievements-items p {
  text-transform: uppercase;
  font-family: 'Lexend Deca', sans-serif;
  color: var(--slightly-transparent-white-zsx) !important;
}

.attribution {
  font-size: 11px;
  text-align: center;
  color: white;
}
.attribution a {
  color: var(--soft-violet);
}

@media (max-width: 1120px) {
  .container {
    flex-direction: column;
    text-align: center;
    width: 300px;
    height: 800px;
  }
  .container-left {
    text-align: center;
    width: 250px;
    height: 100%;
    padding: 0;
    margin: 0 25px;
  }
  .container-left h1{
    margin: 25px 0;
  }
  .container-left p{
    margin: 25px 0;
  }
  .img-container.non-mobile, img.non-mobile {
    display: none;
  }
  .mobile{
    width: 100%;
    height: 100%;
    opacity: .6;
  }
  .img-container.mobile{
    display: block;
    height: 25%;
    background-color: var(--soft-violet);
  }
  .achievements {
    display: block;
    width: 300px;
    height: 250px;
  }
  .achievements h2{
    margin: 5px 0;
  }
  .achievements p{
    margin: 10px 0;
  }
}
/* 
 media

- Mobile: 375px
- Desktop: 1440px 

*/