html {
    /*background-color: rgb(60, 131, 198);
    color: rgb(243, 201, 201);*/
    font-family: Inter;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.image img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

body {
    padding: 20px;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}

body > header {
    margin-top: 0px;
    padding-top: 0px;
}

header nav ul {
    display: flex;
    margin: 0px;
    padding: 0px;
}

header nav ul li {
    list-style-type: none;
    margin-right: 20px;
    font-size: 2rem;
    padding: 0px;
}

header nav ul li a {
    text-decoration: none;
    color: inherit;
}

main {
    max-width: 50vw;
}

.notification-box {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 15px;
    border-radius: 5px;
    z-index: 1000;
    display: none; /* Hidden by default */
}

.notification-box.fade-out {
    opacity: 0;
    transition: opacity 0.5s;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

div#uploadstat div {
    opacity: 1;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    z-index: 1000;
    animation: fadeOut 3s ease-out forwards;
}

pre {
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

html {
    overflow-x: hidden;
}