@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,500;0,700;1,400&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #2a2a2a;
}

p {
    font-weight: 400;
    font-size: 20px;
}

h1 {
    font-weight: 700;
    font-size: 35px;
}

h2 {
    font-weight: 700;
    font-size: 25px;
}

h4 {
    font-weight: 700;
    font-size: 20px;
}

.caption {
    font-weight: 100;
    font-size: 18px;
    padding-top: 0px;
    margin-top: 0px;
}

a {
    color: #0b782c;
    font-weight: normal !important;
}

.hide{
    display: none;
}

td {
    font-size: 20px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 15px;
}

ul {
    list-style-position: outside;
}



/*Navbar*/

.navbar {
    background-color: #003b00;
    overflow: hidden; /*to top*/
    color: #A0AFA0;
    z-index: 99;
}
.bar .title {
    padding-left: 10px;
    float: left;
}

.menu {
    display: none;
}
.menu.open {
    /*Text*/
    font-size: 18px;
    list-style-type: none;

    /*background-color: #0b782c;*/
    
    /*alignment*/
    display: block;
    float: center;
    text-align: center;
    padding: 14px 0px;
    margin-top: 35px;
}

.navbar a{
    /*Text*/
    text-decoration: none;
    color: #A0AFA0;
}
.menu li {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #A0AFA0;
}

.navbar .icon {
    color: #A0AFA0;
    font-size: 25px;
    cursor: pointer;
    /*display: none;*/
    padding-right: 10px;
    padding-top: 23px;
}
.navbar .icon.menu-btn {
    float: right;
}
.navbar .icon.cancel-btn {
    float: right;
}

.bar {
    padding-bottom: 30px;
}

.content {
    margin: 0px;
    padding: 0px;
}


/*Main*/
.main {
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 85vh;
    background-color: #0b782c;
    margin-top: 0px;
    margin-bottom: 0px;
}

.main li, .modal li{
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
}

.box {
    background-color: #70bd7b;
    margin: auto;
    width: 90%;
    height: 90%;
}

img {
    width: 100%;
    height: auto;
    padding-left: 0%;
}

.box .text {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 0.5px;
}

.table table{
    width: 100%;
}

.table .left {
    text-align: left;
    width: 33%;
}

.table .center {
    text-align: center;
    width: 33%;
}
.table .right {
    text-align: right;
    width: 33%;
}
.table a {
    text-decoration: none;
    color: darkgreen;
}
.table a:visited {
    color: darkgreen;
}




/*Modal*/

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 15px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #70bd7b;
    margin: auto;
    padding: 15px;
    border: 1px solid #2a2a2a;
    width: 85%;
  }
  
  /* The Close Button */
  .close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }



/*Footer*/
footer {
    margin-top: 0;
}
footer .footer {
    color: white;
    text-align: center;
    width: 100%;
    background-color: #2a2a2a;
}
footer .footer p {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 100;
    font-size: 17px;
}