* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('../images/background.jpg');
    /* Adjusted path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    position: relative;
    width: 400px;
    height: 555px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    border-radius: 16px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow:  5px  5px #dd2476;
    filter: blur(0.5);
}

.searchBox {
    position: relative;
    width: 100%;
    height: 55px;
    display: flex;
    color: white;
    align-items: center;
}

.searchBox input {
    position: absolute;
    width: 100%;
    height: 100%;
    outline: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.199);
    border-radius: 10px;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 40px;
    color: white;
}

.searchBox input::placeholder {
    color: white;
    text-transform: capitalize;
}

.searchBox button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    width: 40px;
    height: 100%;
    background: transparent;
    outline: none;
    border: none;
    color: white;
}

.searchBox i {
    position: absolute;
    left: 10px;
    
}

.weather img {
    width: 60%;
}

.weather {
    text-align: center;
    padding: 30px 0;
}

.weather .temperature {
    position: relative;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
}

.weather .temperature span {
    position: absolute;
    font-size: 25px;
    margin-left: 4px;
}

.time {
    color: white;
    font-weight: 400;
    background: linear-gradient(to right, #ff512f, #dd2476);
    background-clip: text;
    color: transparent;
    font-size: 40px;
}




.date {
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(to right, #ff512f, #dd2476);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    display: inline-block;
}