body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #334155;
    background-color: #FAFAFA;
}

.maincontent {
    margin: 10px auto;
    max-width: 75%;
    line-height: 1.5em;
    border: 0cap solid lightgrey;
}

.content {
    margin: 10px auto;
    padding: 10px;
    max-width: 100%;
    line-height: 1.5em;
}

/* center the blockquote in the page */
.blockquote-wrapper {
    display: flex;
    padding: 0px;
}

/* Blockquote main style */
.blockquote {
    position: relative;
    padding: 5px;
    width: 100%;
    max-width: 500px;
    z-index: 1;
    margin: 5px auto;
    align-self: center;
    border-top: solid 0px;
    border-bottom: solid 0px;
    font-size: large;
    font-weight: bold;
    border-radius: 5px;
    border: 0px solid grey;
    text-align: center;
    background-color: rgba(255, 255, 255);
}

.__topnav {
    overflow: hidden;
    padding-bottom: 30px;
    ;
}

.__topnav a {
    float: left;
    display: block;
    color:inherit;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    padding-left: 0px;
}

.__topnav a:hover {
    border-bottom: 3px solid #04aa6d35;
}

.__topnav a.active {
    border-bottom: 3px solid #04AA6D;
}

.__topnav .icon {
    display: none;
}

ul li {
    margin-bottom: -1px;
}

.biglist {
    display: grid;
    word-break: keep-all;
    column-gap: 20px;
    ;
}

.biglist img {
    max-width: 300px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    /*justify-content: center;*/
    font-size: 0.8rem;
}

.row1 {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    justify-content: center;
    font-size: 0.8rem;
}


.column {
    padding: 0 4px;
}

.column>div {
    position: relative;
}

.column>div>div {
    /*position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);*/
    padding: 5px;
    /*background: black;
    color: white;*/
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (width > 800px) {
    .row .column {
        flex: 0 0 20%;
    }

    .row1 .column {
        flex: 0 0 40%;
    }

    .biglist {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (width <=600px) {
    .row .column {
        flex: 0 0 45%;
    }

    .row1 .column {
        flex: 0 0 100%;
    }

    .__topnav a

    /*:not(:first-child)*/
        {
        display: none;
    }

    .__topnav a.icon {
        float: right;
        display: block;
    }

    .__topnav.__responsive {
        position: relative;
    }

    .__topnav.__responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .__topnav.__responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .biglist {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* increase header size after 600px */
@media (width < 800px) and (width > 600px) {
    .blockquote h1 {
        font-size: 60px;
    }

    .biglist {
        grid-template-columns: repeat(2, 1fr);
    }

    .row .column {
        flex: 0 0 30%;
    }

    .row1 .column {
        flex: 0 0 100%;
    }
}

img {
    border-radius: 3px;
}

/* Style the tab NEW*/
.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #04aa6d35;
}

/* Create an active/current tablink class */
.tab button.active {
  border-bottom: 3px solid #04AA6D;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}