body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700; /* Make the font thicker */
    background-color: rgb(100, 97, 86);
}
.bg {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 1; /* Place the content above the overlay */
    color: white; /* Set text color */
}
.logo img {
    max-width: 100%; /* Adjust the size of the logo */
    margin-bottom: 20px;
    opacity: 0.70; /* 61% opacity */
}
.choose-location {
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}
.buttons button {
    width: 240px; /* Set a specific width for all buttons */
    padding: 15px;
    margin: 10px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    border-radius: 10px; /* Rounded corners */
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}
.buttons button:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.05); /* Slightly larger on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.buttons button:active {
    transform: scale(0.95); /* Slightly smaller when clicked */
}
@media (max-width: 600px) {
    .buttons button {
        font-size: 18px;
        padding: 10px 30px;
        width: auto; /* Let the width adjust based on content */
    }
    .choose-location {
        font-size: 20px;
    }
}