/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Corpo da página */
  body {
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url("../IMG/Web\ NXT\ STEP.png") no-repeat center center / 100% 100%;
    padding-top: 150px;
  }
  
  /* Links com imagens */
  a img {
    width: 350px;       
    height: auto;       
    margin: 15px;
    transition: transform 0.2s ease;
    cursor: pointer;
  }
  
  /* Efeito hover nas imagens */
  a img:hover {
    transform: scale(1.05);
  }
  