@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    background-image: url('../images/productos-mesa-madera.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    background-color: #d1dae9;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo {
    max-width: 80%;
    height: auto;
    margin-left: 50px;
}

h1 {
    font-size: 24px;
    color: rgba(238, 83, 5, 0.743);
    
}

p {
    font-size: 16px;
    color: rgba(238, 83, 5, 0.743);
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

li {
    font-size: 18px;
    margin-bottom: 10px;
}

a:link, a:visited, a:active {
    text-decoration:none;
}

a:hover {
    color: rgba(238, 83, 5, 0.743);
    font-size: 19px;
  }

@media (min-width: 768px) {
    .container {
        padding: 50px;
    }

    .logo {
        max-width: 50%;
    }

    h1 {
        font-size: 36px;
    }

    p {
        font-size: 14px;
    }
}