* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px;
  max-width: 680px;
}

.article-card{
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 35px;
}

.article-card img{
  border-radius: 16px;
  height: 130px;
  width: 130px;
}

.article-text{
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.article-text p{
  font-size: 14px;
  color: #6D737E;
}

strong{
  font-weight: 600;
}

h1{
  font-size: 32px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.seperator{
  margin-bottom: 25px;
}

@media screen and (max-width: 600px){
  body{
    padding: 30px;
    padding-top: 40px;
  }
  
  .article-card{
    flex-direction: column;
    align-items:flex-start;
    gap: 20px;
    margin-bottom: 45px;
  }

  .article-card img{
    height: 150px;
    width: 150px;
  }
}