
body {
    background-image: url("lake.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    margin: 0;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 90%;
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 10px;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

h1, h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

h2 {
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 20px;
}

button {
    border: 1px solid black;
    padding: 10px;
    color: black; /* Updated button text color */
    font-weight: bold;
    width: 200px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
}

#increment-btn {
    background: #CACACA;
}

#save-btn {
    background: #82B941;
}

#clear-btn {
    background: #CC0100;
}

#save-el {
    font-weight: bold;
}

/* Styles for the weather section */
#weather-section {
    margin-top: 30px;
}

/* Styles for the map container */
#map {
    height: 300px;
    width: 100%;
    margin-top: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
