body {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
    background-image: url('SiSePuede.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-color: orange;
    background-size: auto calc(77% - 5px);
    transition: background-image 0.5s ease-in-out;
  color: #f5f5f5;
}

button {
            padding: 5px;
            font-size: 30px;
            cursor: pointer;
            background-image: linear-gradient(to right, #ff9800, #f44336);
            color: #ffffff;
            font-weight: 600;
            border-radius: 15px;
            position: absolute; /* Takes the element out of the normal document flow */
            top: 5px; /* Adjust as needed for desired vertical position */
            left: 5px; /* Adjust as needed for desired horizontal position */
            right: 5px;
            z-index: 10; /* A higher z-index value places this div on top of others with lower z-index */
      /* Other styles for the overlay */
        }

.header {
  text-align: center;
  padding: 1.5rem;
  background-color: #111;
  border-bottom: 1px solid #333;
}

.header h1 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.contact-list {
  padding: 1rem;
}

.contact-card {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.contact-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-phone {
  font-size: 1rem;
  color: #ccc;
}

.contact-description {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #bbb;
}

.contact-actions {
  margin-top: 0.8rem;
}

.contact-actions a {
  text-decoration: none;
  color: #f5f5f5;
  background-color: #444;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.contact-actions a:hover {
  background-color: #666;
}