@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Body styles */
body {
    font-family: 'Rubik', sans-serif;
    background-image: url('images/BG.jpg'); 
    background-size: cover; 
    background-position: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container styles */
.container {
    background-color: rgba(255, 255, 255, 0.5); /* White background with opacity */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    backdrop-filter: blur(10px); /* Blur the background */
}


/* Title styles */
h1 {
    color: #333333; /* Dark gray text */
    margin-bottom: 20px;
}

/* Input and button styles */
#locationInput {
    width: calc(100% - 110px); /* Adjust input width */
    padding: 12px;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 6px;
    font-size: 16px;
    margin-right: 10px;
}

#searchButton {
    background-color: #5b548a; /* Purple button */
    color: #ffffff; /* White text */
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#searchButton:hover {
    background-color: #4c4676; /* Darker purple on hover */
}

/* Weather info styles */
.weather-info {
    margin-top: 20px;
    text-align: left;
}

#location {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#temperature {
    font-size: 20px;
    margin-bottom: 5px;
}

#description {
    color: #666666; /* Gray text */
    font-size: 16px;
    margin-bottom: 20px;
}
