body {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  color: navy;
  margin: 0;
  padding: 0;
  background-color: rgb(245, 245, 245);
}

a {
  text-decoration: none;    
}

#header-section {
  width: 90%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  border: 0px solid blue;
  padding: 10px 0px 10px 20px;
}

#header-container {
  border: 0px solid red;
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  color: navy;
  display: inline-block;
  margin-right: clamp(10px, 5vw, 20px); 
}

#header-container:hover {
  color: rgb(157, 157, 189);
}

#links {
  border: 0px solid blue;
  display: inline-block;
  margin-right: 20px;
}

.link {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: navy;
  text-decoration: none;
  margin-right: clamp(10px, 5vw, 30px); 
}

#content-section {
  border: 0px solid blue;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#content-container {
  margin: 20px;
  background-color: #fff;
  border: 0px solid red;
  width:80%;
  max-width: 1000px;
  padding: 1.5vw;
}

#apartment-gallery, #guide-gallery {
  max-width: 100%;
  max-height: 100%;
  border: 0px solid green;
}

#opis p {
  font: Roboto, Helvetica,  sans-serif;
  font-size: 14px;
}

#amenities {
  display: flex;
  flex-wrap: wrap;
}

.amenity {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px 8px 2px 4px;
  margin: 5px;
}

.google-map, .custom-map {
	width: 490px;
	height: 300px;
    max-width: 75vw;
    max-height: 40vw;
	border: none;	
}

#distaces-table {
  margin: 20px 0px 50px 0px;
  font: Roboto, Helvetica,  sans-serif;
  font-size: 14px;
}

.distance-name {
    padding-left:10px;
}

.distance-value {
	padding-left:50px;
}

.amenity-icon {
  width: 32px;
  height: 32px;
  margin-right: 5px;
  border: 0px solid red;
}

.amenity-text {
  font-size: 14px;
  color: #333;
  border: 0px solid red;
}