    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html {
    scroll-behavior: smooth;
    font-size: 16px;
    }

    body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f9f9f9, #e3e3e3);
    color: #222;
    overflow: hidden;
    background-image: url(favicon_io/sky.jpg);
    background-size: cover;    
}

    nav {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 2rem;
    border-bottom: 2px solid #ccc;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 10;
    }

    .logo {
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    color: #222;
    transition: color 0.3s ease, transform 0.3s ease;
    }
    .logo:hover {
    color: #0077ff;
    transform: scale(1.05);
    }

    .aboutMe {
    cursor: pointer;
    transition: color 0.3s ease;

    }
    .aboutMe:hover {
    color: #0077ff;
    }

    .hideMe {
    position: absolute;
    top: 550%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: #111;
    padding: 30px;
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .hideMe.show {
    opacity: 1;
    pointer-events: auto;
    }

    .cross {
    color: #ff4444;
    font-weight: bold;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    }
    .cross:hover {
    background-color: #333;
    }

    .search {
    display: flex;
    align-items: center;
    border: 1px solid #999;
    border-radius: 25px;
    padding: 4px 12px;
    position: absolute;
    right: 5%;
    background-color: rgba(255, 255, 255, 0.7);
    transition: box-shadow 0.3s ease;
    }
    .search:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    }
    .search input {
    border: none;
    outline: none;
    padding-left: 10px;
    background: transparent;
    font-size: 1rem;
    width: 160px;
    transition: border .2s ease-in-out;
    }
    .search input:focus {
    border-bottom: 2px solid;
    }

    a {
    text-decoration: none;
    color: inherit;
    }
    .result{
        border: solid;
        margin: 30px 20px;
        height:auto;
        padding-bottom: 25px;
        width: 60%;
        border-radius: 5px;
        text-align: center;
        box-shadow: 0 3px 3px;
        background-color: rgba(255, 255, 255, .3);
    }
    .result h2{
        margin-top: 30px;
    }

    .container{
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 30px 0;
    }
    .wrapper{
        position: relative;
        width: 80%;
        top: 5%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        gap: 20px;
        margin: auto;
        align-items: center;
        justify-content: center;
    }
    .pressure { grid-area: 1 / 1 / 2 / 2; }
    .visibility { grid-area: 2 / 1 / 3 / 2; }
    .humidity { grid-area: 1 / 2 / 2 / 3; }
    .windSpeed { grid-area: 2 / 2 / 3 / 3; }
    .temperature{
        display: flex;
        margin: auto auto;
        font-size: 1.5rem;
        flex-direction: column;
        font-weight: 600;
        margin-top: 30px;
    }
    .head, .currentCity{
        border: solid;
        margin: 2px;
        padding: 5px;
        border-radius: 12px;
        background-color: rgba(255, 255, 255, .3);
    }
    .humidity,.windSpeed, .pressure, .visibility{
        border: solid;
        padding: 5px;
        border-radius: 12px;
        box-shadow: 0 2px 2px;
    }
    .liquidGlass{
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px) saturate(190%);
        box-shadow: inset 0 2px 5px rgb(255, 255, 255),
        0 2px 5px rgba(0, 0, 0, 0.65);
        border-radius: 12px;
    }

    @media (max-width: 600px) {
    nav {
        height: auto;
        flex-direction: column;
        padding: 0.8rem 1rem;
        position: relative;
    }

    .logo {
        font-size: 1.1rem;
        left: 5%;
        position: absolute;
    }

    .aboutMe {
        font-size: 0.9rem;
    }

    .hideMe{
        top: 150%;
    }
    .search {
        position: static;
        display: block;
        width: 90%;
        margin-top: 10px;
    }

    .search input {
        width: 80%;
    }
    .result{
        width: 80%;
    }
    .result{
        height: auto;
        padding-bottom: 20px;
    }
    }
