/* General styles */
body {
  margin: auto;
  min-height: 100vh;
  max-width: 700px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: url("image.png") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow: hidden;
  font-family: "Arial", sans-serif;
  color: #333333;
}

html,
body {
  overflow-y: auto;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: aliceblue;
  background-size: cover;
  filter: blur(80px);
  z-index: -2;
  opacity: 0.9;
}

header {
  text-align: center;
  margin-top: 20px;
  width: 300px;
}

header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  color: #444444;
}

header p {
  font-size: 1.2rem;
  margin: 5px 0;
  color: #555555;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.application-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.application-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.application-list li:hover {
  transform: scale(1.02);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

.application-list img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

header img {
  width: 150px; /* Adjust size as needed */
  height: 150px; /* Match the width for a perfect circle */
  border-radius: 50%; /* Makes the image circular */
  margin: 0 auto; /* Centers the image */
  display: block; /* Ensures proper layout in the header */
  border: 3px solid rgba(0, 0, 0, 0.1); /* Optional border for styling */
}

.application-list a {
  flex-grow: 1;
  text-decoration: none;
  color: #333333;
  font-size: 1rem;
  font-weight: bold;
}

.application-list a:hover {
  color: #ff9933;
}

.application-list .arrow {
  font-size: 1.2rem;
  color: #ff9933;
  margin-left: 10px;
}

footer {
  text-align: center;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  font-size: 0.9rem;
  color: #ffffff;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #ffffff;
}

.language-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.language-toggle button {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.language-toggle button:hover {
  background: #ff9933;
  color: #ffffff;
}
