@font-face {
    font-family: "Impact";
    src: url("fonts/impact.ttf");
}


*{
    margin: 0;
    padding: 0;
}



.logo img {
    height: 70px;
    margin-right: 10px;
    margin-left: 20px;
}


section {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}



article {
    background-image: linear-gradient(180deg, #151515 0%, #ffffff 100%);
    padding: 1;
    margin: 1%;
    display: flex;
    align-items: center;
    flex-direction: column;
    line-height: 1, 5em;
    border-radius: 15px;
    width: 60%;
}

article img {
    width: 50%;
    border-radius: 7px;
    padding-bottom: 5%;
}




article p {
    line-height: 1.5em;
}




footer {
    display: flex;
    justify-content: center;
    background-color: aliceblue;
    height: auto;
    padding: 5% 2%;
    margin-top: 5%;
    margin-bottom: 0;
}

footer p {
    text-align: center;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    nav {
        padding: 10px 0;

    }

    nav a:last-child {
        padding-right: 0;

    }

    .logo img {
        height: 50px;
        margin-right: 10px;
        margin-left: 20px;
    }

    section {
        display: flex;
        flex-direction: column;
    }

    article {
        width: 33, 33%;
        width: 3%;
        background-color: aliceblue;
        margin: 1% 2%
    }
}

.aquí {
    position: relative;
    background-color: transparent;
    background: linear-gradient(250deg, rgb(151 151 151) 0%, rgb(0 0 0) 54%, rgb(151 151 151) 100%);
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 100;
    padding: 6px 6px;
    transition: 0.5s;
    min-height: 100vh;
  
}

.aquí:hover {
    letter-spacing: 0.2em;
    position: relative;
    background-color: transparent;
    background-image: linear-gradient(180deg, #ffffff 100%,  #000000 0%,);
}

.justify-content-center {
    justify-content: center !important;
    flex-direction: column;
    display: flex;
}