body {
  font-family: sans-serif;
  margin: 20px;
  line-height: 1.6;
  background-color: #333333;
  color: #fff;
}

header {
  background-color: #464646;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 5px;
  font-family: Bytesized;
  font-size: x-large;
}

header p {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.6em;
}

.header-content {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

.social-link-logo {
  height: 25px;
  width: 25px;
}

.social-link-logo:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.social-link-logo:active {
  transform: scale(0.9);
  transition: transform 0.1s ease;
}

.social-links a {
  color: #fff;
  text-decoration: none;
}

.social-links a:hover {
  color: #ff4500;
}

.app-section {
  background-color: #333333;
  /* padding: 30px; */
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.app-section h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #ff4500;
  padding-bottom: 10px;
  display: inline-block;
}

.app-grid {
  display: grid; /* Change to grid layout */
  grid-template-columns: 1fr; /* Single column */
  gap: 20px;
  /* padding: 20px; */
}

.app-item {
  text-align: center;
  background-color: #2b2b2b;
  padding: 20px;
  border-radius: 8px;
  width: "70%";
}

.app-image {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.app-title {
  color: #fff;
  margin-top: 0;
  font-weight: bold;
}

.app-description {
  color: #fff;
  margin-bottom: 10px;
  font-size: 0.8em;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 30px;
  flex-direction: row;
}

.download-button {
  display: inline-block;
  background-color: #454545;
  color: #fff;
  padding: 10px 40px;
  border-radius: 15px;
  margin-top: 10px;
}

.download-button:hover {
  background-color: #ff4500;
}

.skills-section {
  background-color: #2b2b2b;
  padding: 30px;
  margin-bottom: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.skills-section h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #ff4500;
  padding-bottom: 10px;
  display: inline-block;
}

.skills-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  white-space: nowrap;
  position: relative;
}

.skill-item {
  background-color: transparent;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.skill-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.skill-item span {
  font-weight: bold;
  font-size: 0.6em;
}

.footer {
  display: flex;
  background-color: #464646;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 50px;
  font-family: "Courier New", Courier, monospace;
  gap: 5px;
}
