h1 {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    justify-content: flex-start;
    /* Align elements at the top */
    align-items: center;
    /* Center elements horizontally */
    height: 100vh;
    overflow: hidden;
    position: relative;
}

img {
    width: 250px;
    /* Adjust size of the favicon */
    margin-top: 166px;
    /* Add spacing at the top */
}

.bee {
    position: fixed;
    width: 40px;
    height: 40px;
    background-image: url('/images/bee.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform 0.05s linear;
    top: 0;
    left: 0;
}

.logo {
    position: relative;
    width: 250px;
    margin-top: 150px;
    z-index: 2;
}

#arch {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url('/images/arch.png');
    background-size: 550px; /* Match logo width */
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.6;
}


#weather {
    margin-top: -186px;
    /* Add spacing below the favicon */
    text-align: center;
    /* Center-align the weather information */
    font-size: 0.8rem;
    /* Make the font smaller */
}

/* Add media queries for responsive sizing */
@media screen and (max-width: 768px) {
    #arch {
        background-size: 500px;
    }
    .logo {
        width: 200px;
    }
}

@media screen and (max-width: 480px) {
    #arch {
        background-size: 375px;
        top: 43px;
    }
    .logo {
        width: 150px;
    }
}
