    * {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        color: white;
        margin: 0;
    }
    
    body {
        background-color: rgba(0, 0, 0, 0.932);
        background-image: url(../img/weather-bg.jpeg);
        background-blend-mode: overlay;
        width: 100vw;
        height: 100vh;
        background-size: cover;
    }
    
    .label-panel {
        padding: 2rem;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .label {
        font-size: 4.5rem;
        font-weight: bolder;
    }
    
    #username {
        font-size: 2rem;
        font-weight: lighter;
    }
    
    #realname {
        font-size: 2rem;
        font-weight: lighter;
        transition: all 2s;
        opacity: 0;
    }
    
    .input {
        font-size: 1.5rem;
        font-weight: lighter;
        box-sizing: border-box;
        border-radius: 15px;
        background-color: rgb(87, 83, 83);
        width: 350px;
        border-style: none;
        box-sizing: border-box;
        padding-left: 1rem;
        margin-bottom: 20px;
        transition: all 0.5s;
    }
    
    .pac-container {
        color: white !important;
        background-color: rgba(0, 0, 0, 0.507) !important;
    }
    
    .pac-item-query {
        color: white !important;
    }
    
    .button {
        background-color: rgba(0, 0, 0, 0);
        border-style: none;
        border-radius: 5px;
        font-size: 1.2rem;
        transition: all 0.5s;
    }
    
    .main-text {
        box-sizing: border-box;
        font-weight: lighter;
        margin-bottom: 20px;
        font-size: 2.2rem;
        transition: all 4s;
        text-align: center;
    }
    
    .place-text {
        box-sizing: border-box;
        font-weight: bolder;
        margin-bottom: 20px;
        font-size: 2.2rem;
        transition: all 4s;
        text-align: center;
    }
    
    .desc-text {
        box-sizing: border-box;
        font-weight: lighter;
        margin-bottom: 20px;
        font-size: 1.8rem;
        transition: all 4s;
        text-align: center;
    }
    
     ::placeholder {
        color: white;
    }
    
    #main-name {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 60%;
        transition: all 2s;
    }
    
    #main-location {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 60%;
        transition: all 2s;
        display: none;
        opacity: 0;
    }
    
    #main-weather {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 60%;
        transition: all 2s;
        display: none;
        opacity: 0;
        text-align: center;
    }
    
    .label-img {
        width: 10rem;
        height: auto;
    }
    
    div#year {
        width: 100%;
        height: 4%;
        background-color: black;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        position: fixed;
        bottom: 0;
    }
    
    #weather {
        height: 30%;
        padding: 5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    #protips {
        height: 30%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        box-sizing: border-box;
        padding: 15px;
    }
    
    #top-left-advice {
        justify-self: left;
        grid-column: 1;
        grid-row: 1;
        font-weight: bolder;
        font-size: 2.5rem;
        text-align: left;
    }
    
    #bottom-right-advice {
        justify-self: right;
        grid-column: 2;
        grid-row: 2;
        font-weight: lighter;
        font-size: 1.5rem;
        text-align: right;
    }
    
    @media only screen and (max-width: 768px) {
        #main-weather {
            margin-bottom: 10rem;
        }
        #top-left-advice {
            font-size: 1.5rem;
        }
        #bottom-right-advice {
            font-size: 1rem;
        }
    }
    
    @media only screen and (max-height: 654px) {
        #main-weather {
            margin-bottom: 10rem;
        }
        #weather {
            margin-bottom: 1rem;
        }
        #top-left-advice {
            font-size: 0.8rem;
        }
        #bottom-right-advice {
            font-size: 0.7rem;
        }
    }