:root {
  --branding-color-secondary: #f65282;
  --font-family-primary: "Roboto", sans-serif;
  --font-family-secondary: "Montserrat", sans-serif;
}

h1,
h2,
h3,
p,
a {
  color: white;
}

body {
  background: #1b1b1b;
}

h1 {
  font-family: var(--font-family-primary);
  font-weight: bold;
  font-size: 72px;
  text-transform: uppercase;
  line-height: 84px;
  letter-spacing: 0.1em;
}
h2 {
  font-family: var(--font-family-primary);
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 28px;
  letter-spacing: 0.1em;
}

p {
  font-family: var(--font-family-primary);
  font-weight: regular;
}

h3 {
  font-family: var(--font-family-secondary);
  font-weight: bold;
}

a {
  text-decoration: none;
  font-family: var(--font-family-primary);
}

a:hover {
  text-decoration: underline;
  color: white;
}

nav {
  margin: 20px 0;
}

nav ul {
  padding: 0;
  margin: 0;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  color: white;
  margin-left: 10px;
}

nav a {
  text-decoration: none;
  transition: all 100ms ease-in-out;
}

nav li.active a {
  color: var(--branding-color-secondary);
  font-weight: bold;
}

nav a:hover {
  color: var(--branding-color-secondary);
  text-decoration: none;
}

footer {
  padding: 40px 0;
}

footer .social-links a {
  margin: 0 10px;
  padding: 10px;
  font-size: 18px;
}

footer .social-links a:hover {
  color: var(--branding-color-secondary);
  text-decoration: none;
}

.btn {
  padding: 9px 44.5px;
}

.btn-branding {
  font-family: var(--font-family-secondary);
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 17px;
  background: #ffffff;
  color: #272142;
  letter-spacing: 0.2em;
}

.hero {
  text-align: center;
  background-image: url(/images/hero-background-3.png);
  padding: 160px 20px;
  background-position: center center;
  background-size: cover;
}

.about-me {
  padding: 70px 60px;
}

.about-me h2 {
  color: var(--branding-color-secondary);
  font-size: 18px;
}

.about-me h1 {
  font-size: 44px;
}
.gallery-hero {
  text-align: center;
  padding: 90px;
}

.gallery {
  padding: 0 144px 144px 144px;
}

.contact-me-hero {
  text-align: center;
  padding: 70px 0px;
}

.contact-me {
  text-align: center;
}

.contact-me h2 {
  color: var(--branding-color-secondary);
  font-size: 14px;
  line-height: 16px;
}


@media (max-width: 576px) {
  h1 {
    font-size: 44px;
    line-height: 1.5;
  }

  h2 {
    font-size: 20px;
  }
  .homepage-gallery img {
    margin-top: 20px;
  }

  .hero p {
    display: none;
  }

  .gallery img {
    margin-top: 20px;
  }

  .contact-me-hero h1 {
    font-size: 36px;
  }

  .contact-button {
    display: flex;
    justify-content: center;
  }
  .about-me {
    padding: 40px 40px;
  }
}

.source-code-link a{
    text-decoration: underline;
}

.source-code-link a:hover{
    color: var(--branding-color-secondary)
}

@media (max-width: 992px) {
  h1 {
    font-size: 44px;
  }
  .about-me img {
    margin-bottom: 20px;
  }

  .gallery {
    padding: 20px;
  }
  .gallery-hero {
    padding: 80px 20px 20px 20px;
  }
}
