:root {
  --primary-color: #1b1b1b;
  --secondary-color: #ffffff;
  --heading-family-font: "Roboto", sans-serif;
  --basic-family-font: "Roboto", sans-serif;
}
body {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.body {
  text-align: center;
}
.header-1 {
  margin-bottom: 50px;
  background-image: url(/images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px;
}

h1 {
  font-family: var(--heading-family-font);
  font-weight: 700;
  font-style: bold;
  font-size: 72px;
  line-height: 2;
}
h3 {
  font-family: var(--heading-family-font);
  font-weight: 700;

  font-size: 24px;
  line-height: 100%;
}
h5 {
  font-size: 18px;
  color: #f65282;
}
h6 {
  color: #f65282;
}

p {
  font-family: var(--basic-family-font);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  font-style: normal;
}

.btn-branding {
  padding: 18px 30px;
  background: var(--secondary-color);
  border-radius: 50px;
  color: var(--primary-color);
  text-decoration: none;
}
.btn {
  margin-top: 20px;
  padding: 10px 30px;
}
.grid-mini a {
  color: #ffffff;
}
.camera {
  background: #2d2727;
  border-radius: 20px;
}

.equal-img {
  height: 240px;
  width: 400px;
}
.grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.grid-text {
  text-align: left;
}
.gallery {
  margin-bottom: 100px;
}
.contact {
  margin-bottom: 150px;
}
.shecodes {
  max-width: 100px;
  max-height: 20px;
}
nav {
  padding: 30px 0;
}
nav ul {
  margin: 0;
  padding: 0;
}
nav li {
  display: inline;
  list-style: none;
  line-height: 30px;
  margin-right: 25px;
  font-size: 14px;
}
nav a {
  text-decoration: none;
  color: #ffffff;
}
nav a:hover,
nav a.active {
  color: blueviolet;
}
footer {
  background: #282323;
  padding: 8px 0;
  text-align: center;
}
footer a {
  color: #ffffff;
  margin-right: 12px;
}
footer img {
  max-width: 80px;
  max-height: 25px;
}
footer p {
  font-size: 15px;
}
footer p a {
  color: blueviolet;
  text-decoration: none;
}
.footer-3,
.footer-2,
.footer-1 {
  margin-top: 80px;
}
.footer-4 {
  margin-top: 80px;
  margin-bottom: 80px;
}

@media (max-width: 800px) {
  .header-1 {
    padding: 100px 20px;
    background-position: center;
  }
  h1 {
    font-size: 36px;
  }
  h3 {
    font-size: 16px;
  }

  p {
    font-size: 12px;
  }
  .btn-branding {
    padding: 9px 15px;
    font-size: 12px;
  }

  .equal-img {
    height: 200px;
    width: 350px;
  }
  .grid-wrapper {
    grid-template-columns: 1fr;
  }
  nav li {
    margin-right: 15px;
    font-size: 12px;
  }
  footer p {
    font-size: 10px;
  }
  footer a {
    margin-right: 5px;
    font-size: 12px;
  }
}
