:root {
  --primary-color: #001d7c;
  --primary-font: "Urbanist", sans-serif;
  --secondary-color: #ffffff;
  --tertiary-color: #fccd0c;
  --black-color: #000000;
}

.copyrightSection {
  background-color: var(--primary-color);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.copyrightSection p {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
}

@media screen and (max-width: 600px) {
  .copyrightSection p {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .copyrightSection p {
    font-size: 16px;
    text-align: center;
  }
}
