@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    /* background-color: rgb(201, 167, 232); */
    background: url(bg.jpg);
    display: flex;
    justify-content: center;
}

.container {
    /* background-color: rgb(189, 251, 251); */
    background: rgba(47, 164, 178, 0.21);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.5px);
    -webkit-backdrop-filter: blur(8.5px);
    border: 1px solid rgba(47, 164, 178, 1);    
    display: flex;
    flex-direction: column;
    width: 330px;
    height: 450px;
    align-items: center;
    margin-top: 15vh;
    border: 3px solid black;
    border-radius: 15px;
    padding-top: 25px;
}

.app-tittle p {
    font-size: 40px;
    font-weight: bolder;
    font-family: 'Baloo Bhai 2', cursive;
}

.weather-icons img {
    width: 170px;
}

.temperature-value p {
    cursor: pointer;
    text-align: center;
    font-size: 60px;
    font-weight: bolder;
    font-family: 'Baloo Bhai 2', cursive;
    margin: -15px;
}

.temperature-value p span {
    font-size: 40px;
}

.temperature-description p {
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    font-family: 'Baloo Bhai 2', cursive;
    margin: -15px;
}

.location p {
    text-align: center;
    font-size: 35px;
    font-weight: bolder;
    font-family: 'Baloo Bhai 2', cursive;
}

.notification {
    background-color: rgb(212, 65, 65);
    color: white;
    border-radius: 5px;
    text-align: center;
    font-size: 25px;
    font-weight: bolder;
    font-family: 'Baloo Bhai 2', cursive;
    margin: -15px;
}

.notification p {
    padding: 2px 10px;
}

.maxtemp-value p {
    text-align: center;
    font-size: 30px;
    font-weight: bolder;
    font-family: 'Baloo Bhai 2', cursive;
    margin-top: 10px;
}

.maxtemp-value p span {
    font-size: 20px;
}

.mintemp-value p {
    text-align: center;
    font-size: 30px;
    font-weight: bolder;
    font-family: 'Baloo Bhai 2', cursive;
}

.mintemp-value p span {
    font-size: 20px;
}