img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    /*pointer-events: none; !* Prevents context menu on right-click *!*/
    user-select: none;
}

#main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    flex: 1 0 0; /* flex-grow, flex-shrink, flex-basis */
    /*justify-content: end;*/
}

#home-container {
    display: flex;
    min-height: 100vh;
    flex-direction: row; /* Default direction */
    height: 100%;
    background-color: #fcfdf5;
}

.error-message {
    min-height: 20px;
    max-width: 200px;
    color: red;
    margin-top: 10px;
    margin-bottom: 10px;
}
