* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgb(255, 255, 255),
            rgb(104, 255, 255),
            aqua);
}

.nav {
    width: 100vw;
    height: 100px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.logo {
    width: 150px;
    height: 100px;
}
.logo_no_name{
    width: 100vw;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search {
    margin-top: 10px;
    margin-right: 20px;
    height: 70px;
    width: 50vw;
    background: linear-gradient(135deg,
            #1E88E5,
            #00BCD4);
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.search_btn {
    background-color: rgba(240, 248, 255, 0);
    border: 0cm;
    width: 90%;
    height: 60px;
    font-size: 30px;
    border-radius: 40px;
}

.search::-webkit-scrollbar {
    display: none;
}

.date-time {
    padding-top: 15px;
    padding-right: 40px;
    font-size: 20px;
}

.place {
    display: flex;
    justify-content: center;
    align-items: center;
}

.location_img {
    width: 50px;
    height: 50px;
}

.location {
    font-size: 40px;
    font-weight: 600;
}
.temprature{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.tempr{
    font-size: 40px;
    font-weight: 600;
}
.feels_like{
    font-size: 20px;
    font-weight: 600;
}
.weather_actual{
    font-size: 30px;
    font-weight: 600;
}
@media (max-width: 545px) {
    .search {
        width: 80vw;
        height: 50px;
        font-size: 20px;
    }
    .logo {
        width: 100px;
        height: 70px;
    }
    .date-time {
        font-size: 12px;
    }
}