* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url(https://thumbs.dreamstime.com/b/aerial-view-sunrise-behind-dome-rock-old-city-jerusalem-israel-palestine-image-striking-portrayal-intersection-296434412.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.name {
  text-align: center;
  font-family: "Playwrite GB S", cursive;
  font-optical-sizing: auto;
  font-weight: 190;
  font-size: xx-large;
  font-style: italic;
  position: relative; 
  
}

.hh{
    position: absolute;
    top: 45px; /* Adjust this value to move it closer to <h1> */
    left: 50%;
    transform: translateX(-75%);
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
    font-family: "Playwrite GB S", cursive;
    font-size:xx-large ;
    font-weight: 200;
    text-align: center;
    color: #333;
  }
  
  .box-1{
    width: 650px;
    height: 300px;
    display: flex;
  
  }
  
  
  p {
    font-size: x-large;
    font-weight: 150;
    display: inline-block;
    margin-left: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding-left: 15px;
    padding-top: 15px;
    padding-right: 15px;
    animation: moveAndFade 3s ; 
  }
  
  .CTA{
    background-color: rgb(138, 81, 34);
    color: white;
    padding-bottom: 15px;
    animation: fadeAndMove 3s ;
  }

  @keyframes fadeAndMove {
    0% {
        transform: translateX(-100px); /* الوضع الأولي */
        opacity: 0.5;
    }
    50% {
        transform: translateX(0px); /* التحريك لليمين */
        opacity: 1;
    }
}
  

  aside {
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 400px;
    height: 430px;
    padding: 20px;
    position: fixed;
    top: 25%;
    right: 250px;
    border-radius: 8px;
    animation: moveAndFade 3s ; /* إضافة الأنيميشن */
  }
  
  /* تحديد مراحل الأنيميشن */
  @keyframes moveAndFade {
      0% {
          transform: translateX(100px); /* الوضع الأولي */
          opacity: 0.5;
      }
      50% {
          transform: translateX(0px); /* التحريك لليمين */
          opacity: 1;
      }
  }
  
  
  aside .info-item {
    display: flex;
    flex-direction: column;
  }
  
  aside .form-group {
    margin-bottom: 20px;
  }
  
  aside label {
    font-weight: bold;
  }
  
  select {
     padding: 5px; 
     width: 360px; 
     height: 40px; 
     border-radius: 5px; 
     border: 3px solid black; 
     font-size: 16px; 
 }
 
 select option {
     padding: 10px;
     font-size: 16px; 
 }

  aside input,
  aside textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  aside a:hover {
    text-decoration: underline;
  } 


#submit{
  width: 90px;
  height: 40px;
  background-color: black;
  color: white;
  text-align: center;
  margin-left: 140px;
  font-size: medium;
}


footer {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #4CAF50;
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}

nav{
  display: flex;
    justify-content: center;
    gap: 20px;
}

.twitter-icon:hover {
  color: #1DA1F2; 
}
