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

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
}

a {
  text-decoration: none;
}

img {
  max-width: 400px;
  margin: 20px 20px 10px;
}

a img {
  max-width: 60%;
  margin: 20px 0px 10px;
}
.h1 {
  margin-bottom: 15px;
}

/* Utility Classes */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  #background-color: beige;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Text Classes */

.text-xxl {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 40px 0 20px;
}

.text-xl {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 40px;
}

.text-md {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 20px 0 10px;
}

.text-sm {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 10px 0 5px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding-top: 20px;
    text-align: center;
  }

  .text-xxl {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 20px 0 10px;
  }

  .text-xl {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 20px 0 10px;
  }

  a img {
    max-width: 50%;
    margin: 20px 0px 10px;
  }
}
