body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

header h1 {
  margin: 0;
  font-size: 24px;
}

header p {
  margin: 5px 0 0;
  font-size: 16px;
}

nav {
  background-color: #2e7d32;
  text-align: center;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
}

main {
  flex: 1;
  padding: 20px;
  text-align: center;
}

h2 {
  color: #2e7d32;
}

.line {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #E3E3E3;
  border-radius: 5px;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
}

.line:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.line h3 {
  margin: 0 0 10px;
  color: #388e3c;
}

.line p {
  margin: 5px 0;
  font-size: 14px;
}

footer {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 10px 0;
}   

a.line {
  text-decoration: none;
  color: inherit;
  display: block;
}

.stop {
  background-color: #E3E3E3;
  border-radius: 5px;
  padding: 20px;
  width: 80%;
  max-width: 280px;
  margin: 20px auto;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.stop:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


@media (max-width: 600px) {
  img {
    width: 100%;
  }
}

