body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    margin: 0;
    padding: 0%;
}

.container {
    background: #000;
    padding: 50px;
    height: auto;
    /* max-width: 100%; */
    text-align: center;
    align-items: center;
}

.container h1 {
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    margin-bottom: 30px;
}

button {
    padding: 10px 20px;
    font-size: 24px;
    width: 15rem;
    border: none;
    background-color: white;
    /* color: #fff; */
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #3e8e41;
}

#map-container {
    color: #fff;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

#latlong {
    font-size: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#iframe {
    width: 90%;
}

#weather-container {
    margin: 0;

    display: none;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    color: black;
    padding: 20px;
}

#weather-container h1 {
    font-weight: 700;
    color: #000;
    text-align: left;
}

#weather-details {
    padding: 10px;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    /* row-gap: 15px; */
}

#latlon {
    display: flex;
    justify-content: space-between;
}

#long {
    margin-left: 1rem;
}