#app {
    max-width: 1024px;
}
.posts {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.logo {
    max-width: 70vw;
}

.card {
    margin-bottom: 30px;
    padding: 20px;
}

.post img.type {
    margin-right: 10px;
    max-width: 22px;
    vertical-align: middle;
    padding: 4px;
}
.home-message {
    margin-bottom: 20px;
}
.post img.photo {
    border: outset 3px bisque;
    max-width: 100%;
}

.lights {
    background-image: url("christmaslights.gif");
    width:100%;
    height: 30px;
    margin-top: -3px;
    margin-bottom: 40px;

}

#app {
    display: grid;
    grid-template-columns: .75fr .25fr;
    gap: 20px; /* Space between items */
    padding: 20px;
}

@media (max-width: 768px) {
    #app {
        grid-template-columns: 1fr; /* Switch to a single column */
    }
}

.post h2 {
    margin-top: 0;
 
}



* {

    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: auto;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing : none;


}

nav {
    padding-top: 5px;
    padding-bottom: 5px;

}



nav img {
    vertical-align: middle;
    margin-right: 10px;
    max-width: 24px;
    max-height: 24px;
}


header {
    
    padding: 40px;
}

html, body {
    cursor: url("./egg.png"), auto;
    font-family: verdana, serif;
    margin: 0;
    
}
.submit-form label {
    display:block;
    font-weight:bold;
    margin-top: 10px;
}