*{
    margin: 0;
    padding: 0;
}

#mostrarUrl{
    background-color: rgb(1, 1, 1);
    padding: 10px;
    text-align: center;
    font: normal 10pt arial;
    color: white;
    font-weight: 700;
}

#Projetos{
    width: 80%;
    margin: 80px auto;
}

#Projetos h1{
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 30px;
}


#Projetos #cards{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#Projetos #cards .card{
    width: 380px;
    border-radius: 10px;
}

#Projetos #cards .card a img{
    width: 100%;
    box-shadow: 3px 3px 8px rgb(0, 0, 0);

}

#Projetos #cards .card a{
    text-decoration: none;
}

#Projetos #cards .card P{
    text-align: justify;
    display: none;
}

footer{
    background-color: black;
    padding: 20px;
}

footer a{
    color: white;
    display: block;
    margin: auto;
    width: max-content;
    text-decoration: none;
}

@media (max-width:450px){
    #Projetos #cards .card{
    width: 98%;
    }
}