body { display: flex; justify-content: center; align-items: center; } #menu { width: 800px; height: 400px; margin-top: 100px; border: 10px groove seagreen; background-color: rgb(240, 106, 106); background-size: contain; display: flex; flex-direction: row; justify-content: center; align-items: center; } p{ color: dodgerblue; align-self: center; border: 4px dashed dodgerblue; background-color: white; margin-right: 40px; margin-left: 40px; } #logo{ align-self: center; justify-content: flex-start; } .seed { display: block; margin-bottom: 10px; /* Adjust the spacing between seeds as needed */ } .seed img { transition: transform 0.3s ease; } .seed img:hover { transform: scale(1.1); }