* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.social-image {
  --align-text-x: flex-start;
  --align-text-y: flex-end;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  width: 100%;
  background: #f5f7fa;
  line-height: 1;
}

.display-preview {
  width: 1200px;
  height: 630px;
  padding: 50px;
}

.ssi-box {
  width: 100%;
  height: 100%;
  border: 2px solid #000000;
  border-radius: 25px 25px;
  box-shadow: rgb(0 0 0) 15px 15px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  display: grid; 
  grid-template-columns: 1fr; 
  grid-template-rows: 3fr 1fr;
}

.ssi-header {
  margin: 25px;
  word-wrap: break-word;
  overflow: hidden;
}
.ssi-header-text {
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: 70px;
}

.ssi-footer {
  width: 100%;
  border-top: 5px solid black;
  display: grid;
  grid-template-columns: 10% 80% 10%;
  align-items: center;
  justify-content: space-around;
  padding: 15px;
}

.ssi-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 3px;
  border: 3px #000000 solid;
  object-fit: cover;
}

.ssi-site-logo {
  width: 100px;
  height: 100px;
  margin: 3px;
  object-fit: cover;
}

.ssi-footer span {
  padding: 15px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 40px;
  color: black;
}