* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f0f4f8;
  color: #333;
}

h1 {
  text-align: center;
  margin: 40px 0 20px;
  color: #2c3e50;
  font-size: 2.5em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h3 {
  text-align: center;
  margin: 30px 0;
  color: #34495e;
  font-size: 1.8em;
}

#beer-select {
  display: block;
  width: 80%;
  max-width: 600px;
  margin: 20px auto;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #bdc3c7;
  border-radius: 5px;
  background-color: #ecf0f1;
  color: #2c3e50;
  transition: all 0.3s ease;
}

#beer-select:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
  border-color: #3498db;
}

#map {
  height: 600px;
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#bar-list {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #ffecb7;
}

.bar-item {
  margin-bottom: 15px;
  padding: 15px;
  border-bottom: 1px solid #ecf0f1;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
}

.bar-item:last-child {
  border-bottom: none;
}

.bar-item:hover {
  background-color: #fffce6;
}

.bar-item a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bar-item a:hover {
  color: #062438;
  text-decoration: underline;
}

#selected-bar-beers {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#selected-bar-beers h4 {
  margin-top: 0;
  color: #2c3e50;
}

#selected-bar-beers ul {
  list-style-type: none;
  padding-left: 0;
}

#selected-bar-beers li {
  margin-bottom: 5px;
  color: #34495e;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.5em;
  }

  #beer-select,
  #map,
  #bar-list,
  #selected-bar-beers {
    width: 95%;
  }
}

.header h4 {
  background-color: #2c3e50;
  color: #ecf0f1;
  font-size: 35px;
  padding: 10px 0;
  padding-left: 10px;
}
footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 10px 0;
  width: 100%;
}

.nomi {
  color: #ecf0f1;
  text-align: center;
  padding: 10px 0;
  width: 100%;
}

.footer-image {
  width: 40%;
  margin-left: 0%;
  margin-top: 10px;
}
.header {
  background-color: #2c3e50;
  color: #ecf0f1;
  width: 100%;
}
.header img {
  width: 100%;
  margin: 0%;
  padding: 0%;
}
