@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Noto+Sans+Arabic:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(133,133,133,0.1) 0%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
header {
  height: 52px;
  background-color: #ffffff;
  width: 30%;
  border-radius: 45px 45px 45px 45px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
}
ul {
  display: flex;
  list-style: none;
  justify-content: space-evenly;
  text-indent: 30px;
  padding-left: 10px;
  margin-top: 12px;
}
li,a{
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin-right: 20px;
}
a:hover{
    color: hsla(0, 88%, 31%, 0.534);
}
footer {
    font-size: 15px;
    font-weight: 400;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    color: hsl(0,0%,0%);
    text-align: center;
    padding: 12px;
}
.container{
    text-align: center;
    width: 1520px;
    height: 550px;
    background-color: rgba(196, 196, 196, 0.158);
    margin-top:80px;
    border-radius: 40px;
}
.clock{
    margin-top: 10px;
    font-size: 13rem;
    font-weight: bolder;
    color: hsl(0, 0%, 19%);
}
h1{
    margin-top: 20px;
    font-size: 3rem;
    color: hsl(0, 0%, 19%);
}
.timezone-diff{
    font-size: 22px;
    font-weight: bolder;
    color: hsl(0, 0%, 5%);
}
.status {
  font-size: 1.5rem;
  color: #000000;
  margin-top: 50px;
}

@media (max-width: 768px) {

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    font-family: "IBM Plex Sans Arabic", sans-serif;
  }

  /* Header */
  header {
    width: 95%;
    margin: 15px auto;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }

  ul {
    display: flex;
    flex-direction: row; /* قوائم أفقية */
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap; /* لا لف القوائم */
    margin: 0;
    padding: 0;
    list-style: none;
  }

  li a {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: 0.3s;
  }
  h1 {
    font-size: 19px;
    text-align: center;
    margin: 20px 0;
    color: #333;
    margin-bottom: 34px;
  }

  .container{
    text-align: center;
    width: 520px;
    height: 550px;
    background-color: rgba(196, 196, 196, 0.158);
    margin-top:80px;
    border-radius: 40px;
}
.clock{
    margin-top: 10px;
    font-size: 6rem;
    font-weight: bolder;
    color: hsl(0, 0%, 19%);
}
h1{
    margin-top: 20px;
    font-size: 2rem;
    color: hsl(0, 0%, 19%);
}
.timezone-diff{
    font-size: 22px;
    font-weight: bold;
    color: hsl(0, 0%, 5%);
}
.status {
  font-size: 1.5rem;
  color: #000000;
  margin-top: 50px;
}

  footer {
  text-align: center;
  padding: 15px;
  font-size: 15px;
  font-weight: 400; 
  color: #000000;
  position: relative;
  bottom: auto;
  margin-top: 20px;
}
}
