@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap');

* {
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  color: #282a28;
  font-family: 'Ubuntu', sans-serif;
}

/*Main Area -----------------------------------------*/

.mainContainer{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10%;
}

.introText{
  width: 35%;
  font-weight: 300;
}

.enjoy strong {
  text-transform: capitalize;
}

.homePageImage{
  width: 45%;
  height: auto;
  border-radius: 100%;
}

.socialContainer{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.socials {
  list-style: none;
  padding-left: 0;
}

.socials li {
  display: inline-flex;
  width: 10%;
  margin-right: 15px;
}

.socials li a img{
  width: 100%;
  height: auto;
  opacity: 90%;
}

@media only screen and (max-width: 620px) {
   .mainContainer, .introText, .homePageImage, .socials {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
