:root {
  --section-color: #1c303e;
  --bg-color: #1c303e;
  --text-color: #eee;
  --max-width: 1080px;
  --logo-font: 'Delicious Handrawn', cursive;
  --content-font: 'Inter', sans-serif;
}

body {
  margin: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--content-font);
  font-size: 1em;
}


.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0px;
}

.header-image {
  width: 100%;
  display: block;
  height: auto;

  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.logo {
  font-family: var(--logo-font);
  font-size: 1em;
  text-align: right;
  margin: 20px 0;
  z-index: 100;
  position: relative;
  top:-100px;
}

.content_img {
  border-radius: 100%;
  width:80%;
  margin-right: 20px;
}

.content {
  text-align: center;
  margin-bottom: 60px;
  margin-top:-70px;

}

footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

footer a {
  color: var(--text-color);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

p {
  padding:10px;
  text-align: left;
}

.content_pics {
  margin-top:50px;
}

.headline {
  font-family: var(--logo-font);
  font-size: 2.5em;
}

.content_pics_text {
  float:left; width:33%
}

@media (max-width: 800px) {
  .content_pics_text {
    float:left; width:50%
  }
}

@media (max-width: 500px) {
  .content_pics_text {
    margin-top:50px;
    float:left; width:100%
  }
}
