@charset "utf-8";

#container {
    display: flex;              /* establish flex container */
    flex-direction: column;     /* stack flex items vertically */
    justify-content: center;    /* center items vertically, in this case */
    align-items: center;        /* center items horizontally, in this case */
    height: 800px;
    
}

.logo {
    margin: 5px;
    text-align: center;
}