:root {
  --white: #ffffff;
  --blue: #011f33;
  --light-blue: #fc6404;
  --dark-blue: #031827;
  --tran: all 0.3s ease;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: var(--dark-blue);
  margin: 0;
  padding: 0;
}

header {
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
}

.navbar-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.navbar h1 {
  font-size: 2rem;
}

h2,
h3,
h4,
h5,
h6 {
  color: #fff;
}

.navbar a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 1.1rem;
  margin-right: 20px;
  transition: var(--tran);
}

.navbar a:hover {
  color: var(--light-blue);
}

.ccc {
  max-width: 1200px;
  margin: auto;
  padding: 1%;
}

.icerikler-2 {
  display: inline-block;
}
.icerikler-2 a {
  color: #ffffff;
  font-weight: 700;
}

.icerikler-2 p {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5em;
}

.icerikler-2 strong {
  color: var(--light-blue);
}

.icerikler-2 ul {
  color: var(--white);
  list-style: circle;
  margin-left: 20px;
}

.icerikler-2 ul li {
  margin-bottom: 10px;
}

footer {
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 2em;
}

.footer-container {
  max-width: 72em;
  margin: 0 auto;
}

.footer-section a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--tran);
}

.footer-section a:hover {
  color: var(--light-blue);
}
