* {
    box-sizing: border-box;
}


body {

    background-color: #0c0c0c;
    margin: 0;
    padding: 20;
    border:0;

    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 300;
}

div {
    display: block;
}

.container {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.content {
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    min-width: 300px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.content h1,
.content p {
    margin: 0;
    text-align: left;
}

.content h1 {
    margin-bottom: 20px;
}

.content h2 {
    margin-bottom: 10px;
    font-weight: 300;
}

.content p {
    font-size: 14px;
    font-weight: 200;
}

.home-link {
    padding-bottom: 20px;
}

.home-link a {
    color: #1c6ed5;
}

.home-link a:hover {
    background: rgba(51, 51, 51, 0.3) !important;
}
<!-------------------------------------------------------------------------------->

#gallery {
    line-height:0;
    padding:0;
}

#gallery img {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    max-width: 100%;
    filter: grayscale(100%);
}

#gallery .flower-images {
    
    display: flex;
    flex-wrap: wrap;
}

#gallery .flower-images img {
    width: 50%; /* Chaque image occupe la moitié de la largeur */
    
}

#gallery img:hover {
    filter:none;
}

<!-------------------------------------------------------------------------------->

.scroll::-webkit-scrollbar {
    width: 12px;
    background-color: #000
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    color: #000;
    background-color: #000
}

::-webkit-scrollbar-track {
    background-color: #000
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #fff;
    background: grey
}

::-webkit-scrollbar-thumb:hover {
    background: #5c5d5e;
    border-radius: 10px
}