.container { max-width: 1200px; margin: 0 auto; padding: 20px; text-align: center; font-family: "Roboto", sans-serif; overflow: hidden; } * { font-family: "Exo", sans-serif; } .mapTitle { color: #2c2f33; text-transform: uppercase; } h1 { font-size: 2.5rem; color: black; margin-bottom: 20px; } .categories { margin-bottom: 20px; text-align: start; color: #333; } .actionButtons { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; } .createMapsButton { padding: 10px 20px; font-size: 16px; background-color: #f1153b; color: white; border: none; border-radius: 8px; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; } .createMapsButton:hover { background-color: #b70526; transform: translateY(-2px); } .searchBar { margin-bottom: 30px; text-align: center; } .searchBar input { width: 300px; padding: 10px; font-size: 16px; border: 1px solid #ccc; border-radius: 8px; outline: none; transition: all 0.3s ease; } .searchBar input:focus { border-color: #1e90ff; box-shadow: 0 0 8px rgba(30, 144, 255, 0.5); } .mapsContainer { display: flex; justify-content: space-between; gap: 20px; margin-top: 30px; } .mapColumn { flex: 1; display: flex; flex-direction: column; align-items: center; /* Center items horizontally */ justify-content: flex-start; /* Ensure tiles stack from the top */ padding: 10px; background-color: #f9f9f9; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .tile { width: 90%; /* Adjust width to leave space around the tile */ display: flex; flex-direction: column; align-items: center; justify-content: center; color: #2c3e50; background-color: #ffffff; box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px; transition: all 300ms ease-in-out; padding: 10px; border: 2px solid #232323; border-radius: 12px; margin-bottom: 20px; } .tile:hover { transform: scale(1.05); box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 18px; background: #f1153b; } .imgStyle { width: 80%; margin-top: 10px; margin-bottom: 5px; } .dragging { background-color: #1e90ff; transform: scale(1.06) rotate(3deg); box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; } @media (max-width: 768px) { .mapsContainer { flex-direction: column; } .mapColumn { width: 100%; margin-bottom: 20px; } .searchBar input { width: 100%; } }