:root {
    --primary-color: #acacac;
    --text-color: #ffffff;
    --background-color: #333;
    --font-family: 'Ubuntu', sans-serif;
}
body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    text-align: center;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .container > div {
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

header {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 20px;
}
.slider {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 25px;
}

.container {
    display: flex;
    justify-content: space-between;
}
.container-fluid {
    background-color: var(--background-color);
}
footer {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}
.contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contacto h3 {
    margin-bottom: 10px;
  }
  
  .contacto p {
    margin-bottom: 5px;
  }