/*Colors:
col-left-green: #545f35;
nav-button-green: #697848;
nav-button-hover: #809060;
header-beige: #e0e0cd;
footer-green: #2c3a16;
header-brown-text: #603910;
title-gradient-1: #D3D4BF
title-gradient-2: #ECEADD
*/

a {
      color: #d40e96;
      text-decoration: none;
}

@font-face {
  font-family: "palatino-linotype";
  src: url("/css/font/palatino-linotype.ttf");
}

.page {
      /*background-color: #bbaa89;*/
      background-image: url(/img/burlap-square.gif);
      font-family: "palatino-linotype";
      text-align: center;
      width: 100%;
      display: inline-block;
      margin: auto;
      padding: 0px;
    }
.container {
      /*background-color: #30c815;*/
      /*background-image: url(/img/burlap-square.gif);*/
      text-align: center;
      width: 960px;
      display: inline-block;
      margin: auto;
      padding: 20px;
    }
.header {
      /*background-color: #69136d;*/
      /*background-image: url(/img/winegarden-top-banner.png);*/
      /*font-size: 1.5rem;*/
      /*color: #333333;*/
      text-align: center;
      width: 100%;
      /*display: inline-block;*/
      margin: auto;
      padding: 0px;
    }

.cols-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-rows: auto;
      height: 100%;
      gap: 0px;

}

.col-left {
      grid-column-start: 1;
      background-color: #545f35;
      vertical-align: top;
      font-size: 1.5rem;
      color: #333333;
      text-align: center;
      /*width: 16%;*/
      height: 100%;
      display: inline-block;
      margin: auto;
      padding: 0px;
      grid-row-start: auto;
      vertical-align: top;
    }
.nav-bar {
      text-align: center;
      width: 100%;
      /*display: inline-block;*/
      height: 100%;
      margin: auto;
      padding: 0px;
    }
.nav-item {
      background-color: #697848;
      font-size: 12px;
      text-transform: uppercase;
      text-decoration: none;
      color: #ffffff;
      text-align: center;
      width: 100%;
      display: inline-block;
      margin: auto;
      padding: 0px;
      padding-top: 10px;
      padding-bottom: 10px;
      /*background-image: url(/img/navbkg-1.webp);*/
      background-repeat: repeat-y;
      color: #FAF8EC;
    }

.nav-item:hover {
      background-color: #809060;
}

.col-right {
      grid-column-start: span 5;
      background-color: #ffffff;
      vertical-align: top;
      text-align: center;
      display: inline-block;
      margin: auto;
      padding: 0px;
      vertical-align: top;
    }
.page-header-img {
      text-align: center;
      width: 100%;s
      margin: auto;
      padding: 0px;
    }
.page-header-title {
      background-image: linear-gradient(#D3D4BF, #ECEADD);
      font-family: "palatino-linotype";
      font-size: 32px;
      font-weight: 300;
      color: #603910;
      text-align: left;
      width: 98%;
      display: inline-block;
      margin: auto;
      padding: 0px;
      padding-left: 2%;
      padding-top: 16px;
      padding-bottom: 16px;
    }
.page-content {
      font-size: 18px;
      color: #60597c;
      text-align: left;
      width: 98%;
      display: inline-block;
      margin: auto;
      padding: 2%;
    }

.tahdah {
      text-align: center;
      color: #d40e96;
      line-height: 125%;
      letter-spacing: -1px;
      font-family: helvetica;
      font-size: 30px;
      font-style: normal;
      font-weight: bold;
}

.msg {
      color: #2b3919;
      font-size:18px;
      font-weight: bold;
      text-align: center;
}

.footer {
      background-color: #2c3a16;
      font-size: 11px;
      color: #ffffff;
      text-align: center;
      width: 96%;
      display: inline-block;
      margin: auto;
      padding: 2%;
    }


/*Start media queries*/
/* start of desktop styles */

@media screen and (max-width: 991px) {
/* start of large tablet styles */

}

@media screen and (max-width: 767px) {
/* start of medium tablet styles */

}

@media screen and (max-width: 479px) {
/* start of phone styles */

}

