/* Header Css */
* {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  width: 100%;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
  padding: 0;
}


.header {
  width: 100%;
  position: fixed;
  height: 60px;
  /* margin-top: -68px; */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
  background: linear-gradient(90deg, #1f2937, #4f46e5);
}

.header h2,
img {
  display: flex;
  align-items: center;
  color: white;
  margin-top: .2cm;
}

nav {
  display: flex;
  justify-content: end;
  margin-top: -.2cm;
  gap: 15px;
}

nav a {
  color: white;
  white-space: nowrap;
  text-decoration: none;
}

h1,
h2 {
  color: #2c3e50;
}

h1 {
  text-align: center;
}

p {
  color: #333;
  font-size: 17px;
  text-align: justify;
  line-height: 1.8;
}

.main {
  padding: 20px;
}

.update {
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.date {
  color: #555;
  font-size: 0.9em;
}

a {
  color: #2980b9;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.footer {
  z-index: 9999;
  overflow-y: hidden;
  position: relative;
  background-color: #0f1115;
  color: #fff;
  padding: 60px 10%;
  width: 100%;
  display: flex;
  overflow-x: hidden;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .left h1 {
  text-align: start;
}

.footer .columns {
  flex: 1 1 200px;
  margin: 10px;
  min-width: 200px;
}

.footer p {
  color: white;
}

.footer h3 {
  color: #00bfff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin: 8px 0;
}

.footer a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
}

.footer .left p {
  font-weight: normal;
}

.footer a:hover {
  color: #00bfff;
}

.footer-bottom {
  position: absolute;
  background-color: black;
  border-top: 1px solid #fff;
  font-size: 14px;
  color: #ddd;
  padding: 15px;
  margin-top: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  text-align: center;
}

@media (min-width:320px) {

  nav a {
    font-size: 14px;
  }

  nav {
    gap: 25px;
    margin-top: .1cm;
  }

  .header h2,
  img {
    justify-content: center;
    margin-top: 1px;
  }

  .footer h1,
  p,
  .colums h3,
  a {
    font-size: 14px
  }
}

@media (min-width:600px) {

  .header h2,
  img {
    justify-content: start;
  }
}

@media (min-width:900px) {

  .header h2,
  img {
    margin-top: .2cm;
  }

  nav {
    margin-top: -.3cm;
  }

  .header h2 {
    font-size: 19px
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 15px;
  }
}

@media (min-width:1300px) {
  nav a {
    font-size: 17px;
  }

  .footer h1,
  p,
  .colums h3,
  a {
    font-size: 15px
  }

  .footer-bottom p {
    font-size: 17px;
  }
}