body {
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    font-family: 'Poppins', sans-serif;
}
html {
    font-size: 62.5%;
}
h1 {
    font-size: 4rem;
    /* padding: 3rem 0; */
    margin: 0;
}
.contenedor {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}
p {
    font-size: 2rem;
}
h1, p {
    text-align: center;
}
form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem;
    background: white;
    /* margin-bottom: 2rem; */
    font-family: Arial, Helvetica, sans-serif;
}
#app p{
    text-align: left!important;
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
}
#resultado p {
    margin: 0;
    padding: 2rem;
    border-bottom: 1px solid #e1e1e1;
}
#resultado p span {
    font-weight: bold;
}
#resultado p:last-of-type{
    border: none;
}
.alerta {
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    font-size: 2rem;
}
.error {
    background-color: red;
}

.sitio-web  {
    color: white;
    display: block;
    font-size: 4rem;
    max-width: 1200px;
    margin: 2rem auto;
    text-decoration: none;
}
.sitio-web:hover {
    color: white;
}

#wrapper {
    /* border: 1px solid red; */
    padding: 40px;
}

#list-autos {
    /* border: 1px solid black; */
    margin: auto;
    border-collapse: collapse;
}

#list-autos tbody tr.auto {
    transition: background-color .3s ease, transform .2s ease, box-shadow .2s ease;
}

#list-autos tbody tr.auto:hover {
    background-color: rgb(244, 243, 243);
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 3px 3px 10px 2px rgba(64, 64, 64, 0.481);
} 

#list-autos th,
#list-autos td {
    padding: 12px 15px;
}

/* .auto-img {
    display: flex;
    justify-content: center;
} */

.auto-img img {
    width: 100%;
    /* max-width: 500px; */
}

@media (max-width: 970px) {
    table {
        width: 100%;
        max-width: 700px;
    }

    table thead {
        display: none;
    }

    /* table tbody {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap: 20px;
    } */

    table tbody tr.con-borde {
        /* display: flex; */
        /* flex-direction: column; */
        
        border: 1px solid rgb(202, 202, 202);
        border-radius: 5px;
        
    }

    table tbody tr {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        margin-bottom: 5px;
        line-height: 1;
    }

    #list-autos tbody td {
        /* padding: 4px 15px; */
        padding: initial;
        padding: 22px 0 10px 15px;
        /* text-align: end; */
        position: relative;
    }

    tbody td:before {
        content: attr(data-label);
        position: absolute;
        /* font-weight: initial; */
        font-weight: bold;
        top: 7px;
        left: 15px;
        /* padding: 4px 10px; */
        font-size: 12px;
        /* padding-left: 10px;
        padding-top: 4px; */

        /* background-color: rgb(188, 188, 188); */
        /* width: 100px; */
        /* height: 80%; */
        text-align: left;
        /* border: 1px solid black; */
        /* padding: 10; */

    }

    @media (max-width: 620px) {
        table tbody {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        table tbody tr {
            grid-template-columns: repeat(3, 1fr);
            width: 100%;
            /* max-width: 400px; */



        }
    }


}