body {
  padding: 0;
  margin: 0;
  font-family: "Forum", cursive;
}

.hero {
  min-height: 90vh;
  background-color: #f08e80;
  color: #fff;
  display: inline-block;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 24px 32px;
}

.navbar .links a {
  text-decoration: none;
  color: #fff;
  margin-right: 16px;
  font-size: 1.2rem;
}

.navbar p {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.navbar .contact {
  background-color: #fff;
  color: #f08e80;
  padding: 16px 24px;
  text-decoration: none;
}

.navbar .contact:hover {
  opacity: 0.8;
}

.hero-content {
  padding: 0 15%;
}

.tagline {
  font-size: 4rem;
  color: #fff;
  letter-spacing: 2px;
}

.two-column-section {
  font-size: 1.5rem;
}

.two-column-section > p {
  width: 50%;
  box-sizing: border-box;
  float: left;
}

.two-column-section .skills {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding: 0;
  list-style: none;
}

.two-column-section .skills li {
  width: 50%;
  float: left;
  font-size: 1rem;
  margin: 5px 0;
}

.blog-section {
  background-color: #fff;
  padding: 64px 0;
}

.blog-content {
  padding: 0 15%;
}

.two-column-section .blog-posts {
  width: 50%;
  float: left;
}

.blog-post {
  margin-top: 24px;
}

.blog-heading {
  font-size: 1.4rem;
}

.blog-text {
  font-size: 1rem;
}

.blog-date {
  font-size: 0.9rem;
  color: grey;
}

.blog-posts p {
  margin: 8px 0;
}

.events-section {
  background-color: #fdf0e6;
  padding: 64px 0;
  display: inline-block;
  width: 100%;
}

.events-content {
  padding: 0 15%;
}

.events-cards {
  width: 50%;
  float: left;
  margin-top: 24px;
}

.events-card p {
  margin: 8px 0;
}

.event-title {
  font-size: 1.4rem;
}

.event-location {
  font-size: 1rem;
}

.events-card .event-date {
  font-size: 0.9rem;
  color: grey;
  margin-bottom: 32px;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 60px;
  text-align: center;
}

footer img {
  width: 2rem;
  height: 2rem;
  margin: 0 8px;
}

.footer-content img:hover {
    opacity: 0.8;
    cursor: pointer
}

@media only screen and (max-width: 1080px) {
  .hero-content,
  .blog-content,
  .events-content {
    padding: 0 5%;
  }
}

@media only screen and (max-width: 843px) {
  .tagline {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 750px) {
  .two-column-section > p,
  .two-column-section .skills,
  .two-column-section .blog-posts,
  .two-column-section .events-cards {
    width: 100%;
  }

  .section-heading {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 500px) {
  .tagline {
    font-size: 2.5rem;
    margin: 0;
  }

  .links {
    display: none;
  }
}
