body, html { max-height: 100vh; max-width: 100%; display: flex; justify-content: center; align-items: center; } #menu { background-size: contain; display: flex; flex-direction: row; justify-content: center; align-items: center; max-width: 100%; height: auto; transition: transform 0.3s, scale 0.3s; } #title{ 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: 90px; /* Adjust the spacing between seeds as needed */ } .seed img { transition: transform 0.3s ease; } .seed img:hover { transform: scale(1.1); } #image-container { transition: opacity 0.5s ease; /* Fade transition */ }