* {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 16px;
  font-family: "Chakra Petch", sans-serif;
  letter-spacing: 1px;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --bgc-1: #2e3975;
  --bgc-2: #3d4986;
  --txtShdw: 2px 2px 2px #000;
}

h2 {
  margin-bottom: 10px;
  color: #ffd46e;
  font-size: 24px;
  text-align: center;
  text-shadow: var(--txtShdw);
}

li {
  list-style: none;
}

html {
  height: 100%;
  overflow: hidden;
  background-color: var(--bgc-1);
}

body {
  height: 100%;
  overflow: hidden;
}

header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 1px 1px 1px rgba(27, 36, 79, 0.57);
  color: orange;
}

header .logo-and-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

header .logo-and-brand img {
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  background-color: #1f264d;
}

header nav ul {
  display: flex;
  gap: 20px;
}

header nav ul li a:hover {
  color: #ffd2ab;
}

header button {
  display: none;
}

main {
  position: fixed;
  z-index: 1;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 80px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

footer {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #444e86;
}

footer p{
  color:#ffffff7a;
}

footer p:hover{
  color:white;
}

/* 📱 Küçük Telefonlar (320px - 480px) */
@media only screen and (max-width: 480px) {
  header {
    height: 60px;
  }

  header img {
    height: 40px !important;
  }

  header nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 60px;
    right: 0;    
    justify-content: center;
    background-color: var(--bgc-2);
  }

  header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  header nav ul li {
    width: 200px;
    padding: 10px 0;
    text-align: center;
    background-color: var(--bgc-1);
    border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  }

  header button {
    display: block;
    background-color: transparent;
    border: none;
    color: #ffd2ab;
    font-size: 20px;
  }

  main {
    top: 60px;
    bottom: 60px;
  }

  footer {
    height: 60px;
  }
}

/* 📲 Büyük Telefonlar (481px - 767px) */
@media only screen and (min-width: 481px) and (max-width: 767px) {
  header {
    height: 60px;
  }

  header img {
    height: 40px !important;
  }

  header nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 60px;
    right: 0;
    justify-content: center;
    background-color: var(--bgc-2);
  }

  header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  header nav ul li {
    width: 200px;
    padding: 10px 0;
    text-align: center;
    background-color: var(--bgc-1);
    border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  }

  header button {
    display: block;
    background-color: transparent;
    border: none;
    color: #ffd2ab;
    font-size: 20px;
  }

  main {
    top: 60px;
    bottom: 60px;
  }

  footer {
    height: 60px;
  }
}

/* 💻 Tabletler (768px - 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {}

/* 🖥️ Laptoplar & Küçük Ekranlar (1025px - 1280px) */
@media only screen and (min-width: 1025px) and (max-width: 1280px) {}

/* 🖥️ Geniş Ekranlı Monitörler (1281px ve üzeri) */
@media only screen and (min-width: 1281px) {}