body {
    background-color: aliceblue;
}


/* Greating */
#greating {
    margin-top: 90px;
}

#portal-greating {
    text-align: center;
    margin-top: 190px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 85px;
    color: rgb(74, 74, 74);
}

#greating p {
    text-align: center;
    font-size: 30px;
    padding: 20px;
    color: rgb(74, 74, 74);
}

/* Map Container */
#map-container {
    width: 90%;
    margin: 100px auto 200px auto;
}

#home-button {
    width: 90%;
    max-width: 1000px;
    font-size: 22px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
    border-radius: 20px;
    margin: 20px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
}

#home-button:hover {
    background: #71b1c1; /* smoother transition */
    transform: translateY(3px) scale(1.02);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
}

#all-pages-container {
    display: flex;
    margin: 20px auto;
    width: 90%;
    max-width: 1100px;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

#all-pages-container a {
    background-color: white;
    border: 1px solid #000000;
    margin: 10px;
    border-radius: 15px;
    padding: 10px 70px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
}

#all-pages-container a:hover {
    background: #71b1c1; /* smoother transition */
    color: rgb(47, 47, 47);
    transform: translateY(3px) scale(1.02);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
}