.flex {
  display: flex;
  justify-content: center;
}
.online {
  display: flex;
  flex-direction: column;
  margin: 20px;
  align-items: center;
  cursor: pointer;
}
.online .logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ececec;
  background-size: 50px;
  background-position: center;
  background-repeat: no-repeat;
}
.online .logo.mail {
  background-image: url(../images/icons8-mail.svg);
}
.online .logo.whatsapp {
  background-image: url(../images/icons8-whatsapp.svg);
}
.online .logo.facebook {
  background-image: url(../images/icons8-facebook.svg);
}
.online .logo.twitter {
  background-image: url(../images/icons8-twitter.svg);
}
.online .logo.tiktok {
  background-image: url(../images/icons8-tiktok.svg);
}
.online .title {
  line-height: 1.7;
  font-size: 14px;
  margin-top: 10px;
}
.online p {
  font-size: 12px;
  color: #999;
}
.map {
  width: 100%;
  max-width: 800px;
  height: 400px;
  background-color: #e6e6e6;
  padding: 0;
}
.about-me {
  margin-top: 100px;
}
.qrcode {
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 40px;
}
.qrcode img {
  width: 100%;
}
.flex{
  display: flex;
}
.contact-left{
  flex-grow: 1;
  margin-right: 40px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
}
.contact-right{
  width: 400px;
  display: flex;
  flex-direction: column;
}
.whatsapp-qrcode{
  width: 300px;
  height: 250px;
}
.contact-meta{
  flex-grow: 1;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.meta {
  display: flex;
  align-items: center;
  background-color: #FAFAFA;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.meta i{
  flex-shrink: 0;
  font-size: 26px;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E8EFF8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.meta.whatsapp i{
  color: #25d366;
}
.meta.email i{
  color: #001e42;
}
.meta.address i{
  color: #2C63C1;
}
.meta-title{
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #333;
}
.meta p{
  margin: 0;
  font-size: 14px;
  color: #333;
}
.submit{
  width: 100%;
}