*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    height: 100vh;
    width: 100vw;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #191818;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
h1{
    color: white;
    font-size: 75px;
    margin-bottom: 20px;
    text-shadow: 0px 0px 50px rgb(134, 192, 240);
}
.container {
    background-image: linear-gradient(rgb(173, 219, 235), rgb(31, 99, 245));
    padding: 28px 13px;
    border-radius: 20px;
    width: 26vw;
}
.container .first {
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .first input{
    font-size: 20px;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    width: 20vw;
}
.container .first input:focus{
border: 1px solid rgb(75, 74, 74);
outline: none;
}
.container .first .fimg{
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    margin-left: 10px;
    cursor: pointer;
}
.container .first img{
    width: 1.2vw;
}
.container .second {
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .third {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.container .third h2{
    color: white;
    font-size: 65px;
}
.container .third h3{
    color: white;
    font-size: 45px;
    font-weight: 500;
}
.container .fourth{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 40px;
}
.container .fourth .part1{
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .fourth .part1 img {
    width: 3vw;
}
.container .fourth .part1 h4{
    color: white;
    font-size: 25px;
    font-weight: 400;
    margin-left: 15px;
}
.container .fourth .part1 h5{
    margin-left: 15px;
    color: white;
    font-size: 18px;
   font-weight: 300;
}


.weather{
    display: none;
}

.error {
    color: rgb(241, 56, 56);
    font-size: 20px;
    align-items: left;
    margin-top: 10px;
    margin-left: 10px;
    font-weight: 600;
    display: none;
}