body {
    font-size: 13px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    background-color: rgb(85,85,85);

}

a {
    color: white;
}

.the-content {
    margin: 10px;
    display: flex;
    flex-direction: column;
}

.the-content img {
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.the-title {
    color: red;
}

.the-technical-details {
    margin-top: 10px;
    margin-bottom: 10px;
}

.the-policy {
    margin-top: 20px;
    margin-bottom: 20px;
}

.the-paragraph {
    margin-top: 10px;
    margin-bottom: 10px;
}

.the-centered {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;

}

.the-centered-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

/* the tab gallery */

/* the container */
.the-gallery {
    margin-bottom: 20px;
}

.the-gallery .row {
    display: flex;
    flex-direction: row;
    overflow: auto;
}

/* The grid: equal columns that floats next to each other */
.the-gallery .column {
    /* float: left; */
    flex-shrink: 0;
    width: 170px/*25%*/;
    padding: 10px 10px 10px 0;
}
  
/* Style the images inside the grid */


.the-gallery .column img {
    opacity: 0.8;
    cursor: pointer;
    width: 170px;
}
  
.the-gallery .column img:hover {
    opacity: 1;
}
  
/* Clear floats after the columns */
.the-gallery .row:after {
    content: "";
    display: table;
    clear: both;
}
  
/* The expanding image container (positioning is needed to position the close button and the text) */
.the-gallery .container {
    position: relative;
    display: none;
}
  
/* Expanding image text */
.the-gallery #imgtext {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 13px;
}
  
/* Closable button inside the image */
.the-gallery .closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

.the-web-app-link {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}




