
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f2f2f2, #e6f7ff);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
}
.logo-textured {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #003366;
  background: repeating-linear-gradient(
    45deg,
    #003366,
    #003366 10px,
    #005580 10px,
    #005580 20px
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}
.search-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.search-box input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.search-box button {
  padding: 0.75rem 1.2rem;
  background-color: #0077b6;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 120px;
}
@media (max-width: 480px) {
  .logo-textured {
    font-size: 1.5rem;
  }
  .search-box {
    flex-direction: column;
    gap: 12px;
  }
  .search-box input,
  .search-box button {
    max-width: 100%;
    width: 100%;
  }
}
