@KristianJ1Submitted over 1 year ago
let me know if u have any tips to give, if u have any suggestions on the image hover let me know(i had to try for some time to find something suitable)
let me know if u have any tips to give, if u have any suggestions on the image hover let me know(i had to try for some time to find something suitable)
Hola @KristianJ1, te comparto algunos sugerencias para mejorar tu pagina:
🔹puedes centrar todo el contenido aplicando a body esto
body{
min-height: 100vh;
display: grid;
place-content: center ;
}
🔹elimina el margen que tienes de 8px
🔹puedes poner background-color: hsl(217, 54%, 11%);
directo en el body
🔹para solucionar de manera general problemas con margen y padding puedes usar
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}