Hello, I have set up some icons on my website but there is one (the “zoom” icon) that is not aligned. It is on the top of the container. I had to use justify content with the space-evenly option to order all the images. I have tried everything but I can not figure out. It must be a silly question for the experts but this is my first website. I am attaching the images as evidence.
Thanks in advance
<!DOCTYPE html>
<html lang="es">
<head>
<title>Balance-Salud Mental</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width", user-scalable=no, initial-scale=1, maximun-scale=1, minimun-scale=1"/>
<meta name="description" content="Tu salud mental es importante, cuidala con los profesiones adecuados. "/>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<link rel="icon" href="img/favicon.png">
<link rel="stylesheet" href="css/fontello.css">
<link rel="stylesheet" href="css/index.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap" rel="stylesheet"/>
</head>
<body>
<header>
<div class="contenedor">
<a href="index.html">
<img src="img/logo.png" class="brand" alt="Salud Mental Peru">
</a>
<input type="checkbox" id="menu-bar">
<label class="icon-menu-outline" for="menu-bar"></label>
<nav class="menu">
<a href="quienes_somos.html">¿Quienes Somos?</a>
<a href="nuestros_profesionales.html">Nuestros Profesionales</a>
<a href="consultas_citas.html">Consultas y Citas</a>
<a href="blog.html">Artículos</a>
</nav>
</div>
</header>
<main>
<section id=consultas>
<h2>Consultas y Citas</h2> <br>
<div class="contenedor">
<p> Consultorio: Av. Arequipa 2555, Lince. Lima. <br>
Debido a la coyuntura actual, tambien estamos realizando las consultas a través de videollamadas en la
plataforma de tu preferencia.
</p>
<div class="images">
<img src="img/whatsapp-png.png" width="70px" height="70px"/>
<img src="img/skype-png.png" width="100px" height="70px"/>
<img src="img/messenger-png.png" width="70" height="70px"/>
<img src="img/meet-png.png" width="70" height="70px"/>
<img src="img/zoom-png.png" width="120" height="40px"/>
</div>
<p>
Comunícate (whatsapp) y agenda tu cita:
</p>
<p>
Psiquiatría: (+51)999888777 <br>
Psicología: (+51)999888777
</p>
</div>
</section>
</main>
<footer>
<div class="contenedor">
<p>2018-2020 Balance Salud Mental © - Designed by Watermelon</p>
</div>
</footer>
</body>
</html>
CSS code:
/*CONSULTAS Y CITAS*/
#consultas {
margin-top: 100px;
text-align: center;
}
#consultas .images {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
padding: 10px;
}
p {
padding: 10px;
}
 