body {
  font-family: "Roboto", "sans-serif";
  margin: 0;
  padding: 10;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.5em;
}

header {
  background-color: white;
  color: rebeccapurple;
  padding: 20px 0 0 0;
  text-align: center;
  border: 5px double rebeccapurple;
}

h1 {
  margin: 0;
  font-size: 4em;
  font-family: 'Roboto Slab', serif;
  letter-spacing: .2em;
  line-height: .75em;
}

subtitle {
  font-size: 1em;
  line-height: 2.5em;
  margin: 0;
  letter-spacing: .2em;
}

.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.centered-content {
  text-align: left;
  width: 800px;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transform: rotate(-1deg);
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.social-icons a {
  margin: 0 10px;
  color: rebeccapurple;
  font-size: 1.5em;
}

footer {
  background-color: rebeccapurple;
  color: #fff;
  text-align: center;
  padding: 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  font-size:smaller;
  line-height: normal;
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    padding: 20px 0 0px 0;
  }

  footer {
    padding: 5px 0;
  }

  .centered-container {
    display: flex;
    justify-content: normal;
    align-items: normal;
    height: auto;
    padding-bottom: 20px;
    border:none;
    box-shadow: none;
  }
  .centered-content {
    text-align: left;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transform:none;
  }
}