@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

body {
  background-color: rgb(89, 152, 197);
  color: white;
  font-family: "Press Start 2P", cursive;
}



@media (max-width: 600px) {
  .container {
    max-width: 98%;
    padding: 8px;
    margin-top: 20px;
    height: auto;
  }
  .content {
    padding: 0;
  }
  .apps {
    gap: 10px;
    font-size: 16px;
    padding: 10px;
    flex-wrap: wrap;
  }
  .Email {
    right: 5px;
    bottom: 5px;
    padding: 6px 10px;
    font-size: 14px;
  }
}

#welcome-message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 17, 40, 0.95);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgb(29, 17, 40);
  border-radius: 8px;
  margin-top: 120px;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1; /* يأخذ كل المساحة المتاحة */
  display: flex;
  flex-direction: column;
  justify-content: center; /* وسط عمودي */
  align-items: center; /* وسط أفقي */
}

.cat-image {
  width: 200px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

p {
  font-size: 12px;
  line-height: 1.6;
}

p,
h1 {
  color: rgb(192, 190, 197);
}

img,
.cat-image {
  max-width: 100%;
  height: auto;
}

.apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: flex;
  gap: 20px;
  font-size: 20px;
  margin-top: auto;
  padding: 20px;
}

.apps i {
  color: rgb(108, 105, 119);
  transition: color 0.2s;
}

.apps i:hover {
  color: rgb(21, 44, 60);
}

footer {
  text-align: center;
  margin-top: 20px;
  color: rgb(200, 200, 200);
}

.Email {
  text-align: center;
  margin-top: 20px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: rgb(29, 17, 40);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.Email a {
  text-decoration: none;
}
