/* You can either copy the below and paste it between style tags on your HTML page, OR you can copy this to a file and name it .css and link it from your HTML page. */

:root {
  --font-family:"Verdana", sans-serif;
  --font-size:x-small;
  --sidebar-border:1px solid #E6E6C3;
  --link-color:blue;
  --bg-color:#f0f7f2;
  --text-color:black;
  --sidebar-bg:transparent;
  --content-bg:transparent;
  --content-padding:0;
  --background-image:none;
  /* for bg image, above would be url('site.com/image.jpg'); */
}
body {
  font-family:var(--font-family);
  font-size:var(--font-size);
  background-color:var(--bg-color);
  color:var(--text-color);
  background-image:var(--bg-image);
}
body a {
  color:var(--link-color);
}
.left {
  width:200px;
  /*display:flex;*/
  flex-wrap:wrap;

  @media (max-width:600px){
    flex-wrap: nowrap;
    columns: 3;
    width: 100%;
    border:var(--sidebar-border);
    margin-bottom: 5px;
  }

  @media (max-width:400px) {
    columns: 2;
  }
}
.box {
  width:200px;
  border:var(--sidebar-border);
  margin-bottom:15px;
  padding-bottom:10px;
  background-color:var(--sidebar-bg);

  @media (max-width:600px){
    border: none;
    margin-bottom:0px;
    padding-bottom:5px;
  }
}
.flex {
  display:flex;

  @media (max-width:600px){
    display: inline;
  }
}
.container {
  @media (min-width:1000px){
    max-width:75%;
  }
  margin:0 auto;
}
.right {
  margin-left:10px;
  background-color:var(--content-bg);
  padding:var(--content-padding);

  @media (max-width:600px){
    margin-left:0px;
  }
}
.subtitle {
  font-weight:bold;
  padding-top:3px;
  margin-bottom:5px;
}
.boxwrap {
  padding-left:10px;
  padding-bottom:5px;
}

.footer {
  text-align:center;
}

.header {
  padding-top: 20px;
  padding-bottom:10px;
  margin-bottom: 10px;
  text-align: center;
  font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
  background-image: url("img/header.jpeg");

  background-size: 100%;
  background-repeat: no-repeat;
  height: 250px;
  color: #cdf6d6;

  @media (max-width:600px){
    margin-left:0px;
    padding-bottom:0px;
    height: 150px;
    margin-bottom: 5px;
  }
}
.header h1 {
  font-size: 64px;
  margin-top: 50px;
  margin-bottom: 10px;

  @media (max-width:600px){
    margin-top: 5px;
  }
}
.header h2 {
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 15px;

  @media (max-width:600px){
    margin-bottom: 5px;
  }
}

content {
  display:flex;
  margin:0 auto;
  width:700px;

}
.banner {
  padding-top:20px;
  padding-bottom:20px;
  border:2px solid #FF0000;
  text-align:center;
  font-size: 32px;
}

.title {
  font-size:24px;
  font-weight:bold;
  margin-top:10px;
  margin-bottom:10px;
  /*padding-left:10px;*/
}

.section .title {
  font-size:20px;
  text-decoration-line: underline;
}

.section {
  font-size:16px;
  line-height:20px;
  padding-left:10px;
}

tbody.menu-box img {
  width: 30px;
}

table.vegetable-table {
  border-collapse: collapse;
}

table.vegetable-table tr {
  background-color: #cdf6d6;
}

table.vegetable-table th {
  background-color: #199935;
}

table.vegetable-table td, th {
  border: 1px solid #6fed8a;
  padding: 5px;
}

.gallery-container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
}

.thumbnail a {
  text-decoration: none;
}

.thumbnail {
  display: block;
  height: auto;
  margin: 5px;
  background-color: #ffffff;
  border: 1px solid #aaaaaa;
}

.thumbnail .caption {
  padding: 5px;
  text-align: center;
  color: #000000;
}

.address-bar {
  display: block;
}

.inline-icon {
  position: relative;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 34px;
  width: 34px;
  padding: 0;
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
}

.inline-icon img {
  display: inline;
  border: none;
  text-align: center;
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  line-height: 34px;
  font-size: 1.6em;
  vertical-align: middle;
}
