:root {
  --primary-brand-colour: #525050;
  --secondary-brand-colour: #d8d5ce;
  --default-font-family: "Gowun Dodum", sans-serif;
}

body {
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5 {
  color: black;
  font-family: var(--default-font-family);
}

header {
  background-image: url(IMAGES/PY\ 17.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header .hero {
  color: black;
  text-align: center;
  display: block;
  margin: 0 auto;
  background-color: rgba(128, 128, 128, 0.4);
  padding: 30px;
  width: 100%;
}

header h1 {
  color: black;
  text-align: center;
  font-size: 100px;
  font-weight: bold;
}

h2 {
  color: white;
}
header p {
  font-size: 24px;
}
main {
  background-image: url(IMAGES/PY\ 6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-content {
  text-align: center;
  display: block;
  text-align: center;
}

.main-content p {
  color: white;
  text-align: left;
  padding-left: 80px;
  font-size: 16px;
}
.learn-more {
  position: relative;
  top: 100px;
  background: white;
  color: #113b39;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 18px;
  transition: all 100ms ease-in-out;
}

.learn-more:hover {
  background: #113b39;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border: 1px solid var(--primary-brand-colour);
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
}

.contact-button {
  background: #c46354;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 18px;
  transition: all 100ms ease-in-out;
}

.contact-button:hover {
  background: white;
  color: #c46354;
  text-decoration: none;
  padding: 10px 15px;
  border: 1px solid white;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.brands {
  background-color: #f7f7f7;
  padding: 40px;
}

.brands p {
  color: black;
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}
footer {
  text-align: center;
  margin: 40px 0;
}

footer p {
  font-size: 24px;
}
footer .social-links a {
  margin: 0 40px;
  color: white;
  font-size: 20px;
  background-color: var(--primary-brand-colour);
  padding: 15px 19px;
  border-radius: 50%;
  transition: all 100ms ease-in-out;
}
footer .social-links a:hover {
  color: var(--primary-brand-colour);
  background-color: white;
  border: 1px solid var(--primary-brand-colour);
}

.navbar-grey {
  background-color: var(--primary-brand-colour);
}
.navbar-toggler {
  background-color: white;
}
@media (max-width: 960px) {
  h1 {
    font-size: 60px;
  }

  header {
    background-image: url(IMAGES/PY\ 17.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 50vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header h1 {
    color: black;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
  }

  h2 {
    color: black;
  }
  header p {
    font-size: 14px;
  }
  main {
    background-image: url(IMAGES/PY\ 6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .main-content p {
    color: white;
    text-align: left;
    padding-left: 80px;
    font-size: 12px;
  }

  .learn-more {
    position: relative;
    top: 50px;
    background: white;
    color: #113b39;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 18px;
    transition: all 100ms ease-in-out;
  }

  .learn-more:hover {
    background: #113b39;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid var(--primary-brand-colour);
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
  }

  .brands p {
    color: black;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
  }

  footer {
    text-align: center;
    margin: 40px 0;
  }

  footer p {
    font-size: 16px;
  }
  footer .social-links a {
    margin: 0 40px;
    color: white;
    font-size: 16px;
    background-color: var(--primary-brand-colour);
    padding: 8px 12px;
    border-radius: 50%;
    transition: all 100ms ease-in-out;
  }
  footer .social-links a:hover {
    color: var(--primary-brand-colour);
    background-color: white;
    border: 1px solid var(--primary-brand-colour);
  }
}
