@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap");

:root {
  --accent: #d0302dc9;
  --shadow: rgba(70, 70, 73, 0.4) 0 48px 100px 0;
}

* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(180deg, rgb(52, 52, 52), rgb(58, 58, 58));
}

main {
  display: flex;
  flex-direction: column;
  background: url("../images/background2.jpg") fixed;
}

a {
  text-decoration: none;
  color: #fcfcfc;
  transition: 0.7s color;
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}
.pz-heading {
  gap: 1em;
  width: 100%;
  background-color: rgba(58, 58, 58);
  color: whitesmoke;
  font-size: 1em;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 2px solid var(--accent);
  height: 10vh;
}

.pz-heading h1 {
  font-weight: bold;
}

.pz-heading nav {
  display: flex;
  gap: 1em;
}

footer div {
  max-width: 1400px;
  padding: 2em;
  justify-content: space-between;
  display: flex;
  margin: auto;
}

footer p {
  text-align: center;
}

footer {
  background-color: rgba(58, 58, 58, 0.397);
  color: whitesmoke;
  line-height: 1.5;
}

.content-card {
  background-color: rgba(26, 26, 26, 0.8);
  margin: 2em;
  padding: 2em;
  align-self: center;
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: white;
}

.content-card h1 {
  text-align: center;

  margin: 1em;
}

@media (max-width: 992px) {
  .content-card {
    font-size: small;
  }
}
