.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; margin-top: 5em; } .searchBar input { /*width: 300px;*/ width: 33vw; 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; justify-content: flex-start; padding: 10px; /*padding-left: 2.5em;*/ 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; } .plusButton { width: 50px; height: 50px; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease-in-out; background: #4ebc3b; margin-right: 20px; } .plusButton img { width: 50px; height: auto; margin-left: 0; } .plusButton:hover { transform: scale(1.1); background: #46be2f; } .header { display: flex; align-items: center; justify-content: space-between; background-color: #f8f9fa; /* Light grey background for a clean look */ border-bottom: 1px solid #ddd; /* Subtle separation from the rest of the page */ padding: 10px 20px; /* Add some space around the content */ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow for subtle elevation */ } .header .logo-wrapper, .header .profile-wrapper { display: flex; align-items: center; } .header h1 { font-size: 1.5rem; /* Slightly larger font size */ color: #333; /* Dark grey for a professional tone */ margin: 0 auto; /* Center-align the title */ font-weight: 600; /* Semi-bold text for emphasis */ text-align: center; flex-grow: 1; /* Allow it to take space in the middle */ } .logo-wrapper { margin-right: auto; /* Push logo to the far left */ } .profile-wrapper { margin-left: auto; /* Push profile to the far right */ } @media (max-width: 768px) { .mapsContainer { flex-direction: column; } .mapColumn { width: 100%; margin-bottom: 20px; } .searchBar input { width: 100%; } }