body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

.background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

.background img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
  background-size: cover;
}

.container {
	position: relative;
	margin: 40px auto;
	width: 50%;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	opacity: 0.75;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.news-button, .login-button {
  background-color: #4c63af;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
}

.news-button:hover, .login-button:hover {
  background-color: #4ca0af;
}

.logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 20px;
}

.info-box {
	margin-top: 20px;
}

.ad-box {
	margin-top: 20px;
	position: relative;
	margin: 40px auto;
	width: 50%;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	opacity: 0.75;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

table {
	width: 100%;
	border-collapse: collapse;
}

td {
	padding: 10px;
}

td:first-child {
	width: 50%;
}

#city, #temperature, #humidity, #wear, #tips {
	font-weight: bold;
}

/* Add some basic styling to the table cells */
td p {
	margin-bottom: 10px;
}

td p:last-child {
	margin-bottom: 0;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* importante para que quede detrás de los demás elementos */
  filter: blur(5px); /* agregar blur a la imagen de fondo */
}

.info-box, .ad-box {
  position: relative;
  z-index: 1; /* importante para que queden encima de la imagen de fondo */
}