body {
    margin: 0;
    font-family: "Lato",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

.title {
    width: 80%;
    margin: auto;
    display: flex;
    align-items:center;
}

.title-img {
    float: left;
    width: 150px;
}

.title-text {
    float: left;
    text-align: center;
    padding-left: 5%;
}

.nav-wrapper {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    background-color: #333;
    width: 80%;
    padding: 1px;
}

#nav {
    /* border: 1px solid red; */
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    overflow: hidden;
    background-color: #333;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
}

#nav li {
    float: left;
}

#nav li a {
    display: block;
    color: white;
    text-align: center;
    width: 150px;
    padding-top: 14px;
    padding-bottom: 14px;
    text-decoration: none;
}

#nav li a:hover {
    background-color: #111;
}

main {
    width: 80%;
    /* border: 1px solid red; */
    margin: auto;
}

/* Left column of main content */
.section {
    /* border: 1px solid black; */
    float: left;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding-bottom: 50px;
    width: 60%;

    background-size: cover; /* Add this line */
    background-position: center center; /* Add this line */
    background-repeat: no-repeat; /* Add this line */
    background-attachment: fixed; /* Add this line */
}

.notification {
    color: white;
    background-color: #73bb5d;
    /* display: inline-block; */
    border-radius: 10px;
    margin: auto;
    width: 50%;
    padding: 10px;
}

/* Right column of main content */
.right {
    float: left;
    width: 40%;
    align-items: left;
    text-align: left;
}

.list {
    /* border: 1px solid black; */
    width: 80%;
    margin: auto;
    align-items: left;
    text-align: left;
}

/* Clear floats after the columns */
main:after {
    content: "";
    display: table;
    clear: both;
}

.inst {
    color: gray;
}

footer {
    text-align: center;
    padding: 50px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.logos {
    width: 40%;
    float: left;
    display: block;
}

.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.body {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    width: 80%;
}

.row {
    /* border: 1px solid black; */
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    width: 80%;
    margin: auto;
}

/* Create three equal columns that sits next to each other */
.column {
    /* border: 1px solid black; */
    flex: 30%;
    max-width: 30%;
    padding: 0 4px;
}

.column a img {
    /* border: 1px solid black; */
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

h1 {
    font-size: 1.8em;
}

section h2 {
    font-size: 2em;
}

section h3 {
    font-size: 1.5em;
}

.method2 {
    display: table;
    text-align: left; 
    width: 80%; 
    margin: auto;
    counter-reset: alpha;
    border-spacing: 3px 3px;
}

.method {
    display: table;
    text-align: left; 
    width: 80%; 
    margin: auto;
    counter-reset: alpha;
    border-spacing: 3px 3px;
}

.method li {
    display: table-row;
    list-style: none;
    position: relative;
}

.method > li:before {
    display: table-cell;
    counter-increment: alpha;
    content:"(" counter(alpha, lower-alpha)") "
}

table {
    border-collapse: collapse;
}

td, th {
    /* border: 1px solid #dddddd; */
    /* text-align: left; */
    padding: 8px;
}

tr:nth-child(2n+3) {
    background-color: #ebebeb;
}

/* FAQ section */
.faq {
    text-align: left; 
    width: 80%; 
    margin: auto;
}

.faqans {
    font-style: italic;
}

code {
    background-color: lightgray; 
}
/* ------------ */

/* Use a media query to add a breakpoint at 800px: */
@media screen and (max-width: 800px) {
    .title {
        width: 100%;
    }
    .title-img {
        width: 100px;
    }
    .section {
        width: 100%;
    }
    .body {
        width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
    }

    .right {
        width: 100%;
    }

    .logos {
        width: 100%;
    }

    .img {
        width: 100%;
    }

    h1 {
        font-size: 5vw;
    }

    section h2 {
        font-size: 4vw;
    }

    section h3 {
        font-size: 3.5vw;
    }

    section {
        padding-top: 20px;
        padding-right: 10px;
        padding-bottom: 0;
        padding-left: 10px;
    }
  }

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}
  
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }   
}