* {
    margin: 0;
    box-sizing: border-box;  /* Combines content sizes for all element*/
    font-family: "Montserrat", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("./weather.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    background: #CECCC6;
    padding: 20px 10px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100%;
    max-height: fit-content;
    border-radius: 10px;
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #063B6B;
}

.search-area {
    margin-top: 20px;
}

input {
    padding: 10px;
    border-radius: 10px;
    border-color: #063B6B;
}

button {
    background: #063B6B;
    color: white;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
}

button:hover {
    background: #374149;
    transform: scale(1.1);
}

#weatherInfo {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#weatherInfo h3 {
    color: #063B6B;
}

#weatherInfo p {
    font-weight: bold;
    font-size: 18px;
}