html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Ubuntu, Arial, sans-serif;
  word-wrap: break-word;
  word-break: break-word;
}

#wrapper {
  min-height: 100%;
  background-color: #c40075;
  text-align: center;
}

#content {
  display: table;
  margin: 0 auto;
  padding: 0 10px; /* Adjusted padding for responsiveness */
  max-width: 1180px; /* Set max-width for larger screens */
  width: 100%; /* Adjusted width for responsiveness */
  background: #fff;
  color: #000;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

#preview {
  position: relative;
  display: inline-block;
  height: 400px;
  width: 100%; /* Adjusted width for responsiveness */
  max-width: 400px; /* Set max-width for larger screens */
  background: #fff;
  margin: 0 auto; /* Center the block */
  overflow: hidden; /* Hide overflowing content */
}

#profile-pic, #fg {
  width: 100%;
}

#fg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

#fb-set-pic,
#download {
  padding: 10px 20px;
  background: #c40075;
  color: #fff;
  font-size: 1em;
  border-radius: 10px;
  outline: none;
  margin-top: 20px; /* Adjusted margin for spacing */
  display: inline-block; /* Ensure button elements are inline */
}

#fb-set-pic {
  background-color: #4267b2;
  border-color: #4267b2;
}

#download[disabled],
#fb-set-pic[disabled] {
  background: #ccc;
  color: #eee;
  border: none;
}

.design {
  height: 100px;
  border: 5px dashed #d1d1d1;
  cursor: pointer;
}

.design.active {
  border: 5px dashed #c40075;
}

#comments {
  margin: 20px 10px; /* Adjusted margin for responsiveness */
}

.paragraph-responsive {
  width: 95%; /* Default width for tablet and desktop */
  margin-left: auto;
  margin-right: auto;
}

/* Larger desktop screens */
@media (min-width: 1280px) {
  .paragraph-responsive {
    width: 60%; /* Adjusted width for larger desktops */
  }
}
