@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');

body {
  background-image: linear-gradient(30deg,#202020, #282828) ;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #bcbcbc;
  padding: 0 10px;
  margin: 0;
}
h3 {
  margin: 5px 0;
  font-size: 25px;
}
h1, h2, h3 {
  line-height: 1;
  text-align: center;
  font-family: 'Petit Formal Script', cursive;
  height: max-content;
  color: #7f6433;
}

a {
  line-height: 1.4;
}
p {
  line-height: 1;
  padding: 2px;
  margin: 5px;
  font-size: 18px;
}
h1 span:not(.and) {
  font-size:200px;
}
h1 span.and {
  margin-left: 20px;
  margin-right: 40px;
  font-size: 70px;
}
h2 {
  font-size: 40px;
}

header {
  text-align: center;
}
main { 
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
}
img {
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
  height: 300px;
}
img:last-child {
  margin-bottom: 0;
}
footer { 
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 20px 20px 0;
}
footer a {
  color: currentColor; 
  text-decoration: none;
}
.social-icons {
  padding: 4px 7px 3px 7px;
  background-color: currentColor;
  border-radius: 1px;
  margin: 0 10px 0 0;
}
i {
  color: #202020;
}

@media only screen and (max-width: 600px) {
  body {
    padding: 0 15px;
  }
  main { 
    flex-direction: column;
  }
  img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  p {
    line-height: 1;
    padding: 2px;
    margin: 5px;
    font-size: 18px;
  }
  h1 span:not(.and) {
    font-size: 100px;
  }
  h1 span.and {
    margin-left: 20px;
    margin-right: 25px;
    font-size: 50px;
  }
  h2 {
    font-size: 30px;
  }
}