body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  text-align: center;
  overflow-y: auto;
}

header {
  background-color: #4caf50;
  padding: 20px 0;
  color: #fff;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.header-text {
  text-align: center;
}

main {
  padding: 40px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
}

.screenshots {
  margin-bottom: 30px;
}

.screenshots h2 {
  margin-bottom: 20px;
}

.devices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.device-frame {
  width: 180px;
  height: 320px;
  background-color: #e0e0e0;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.device-frame:hover {
  transform: scale(1.05);
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.fullscreen-overlay.active {
  display: flex;
}

.download-buttons {
  margin-top: 20px;
}

.chrome-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}

.btn {
  background-color: #4caf50;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s;
  font-size: 0.9rem;
}

.btn:hover {
  background-color: #45a049;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
  position: static; 
  width: 100%;
  margin-top: 30px; 
}

footer a {
  color: #4caf50;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
  font-size: 0.85rem;
}

footer a:hover {
  color: #66bb6a;
  text-decoration: underline;
}

footer .btn {
  margin: 8px 0;
  font-size: 0.85rem;
  padding: 6px 12px;
}

.socials {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.socials a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #4caf50;
}

.main-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
