/* container with background image */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0px;
}

/* set max width and add a background*/
.wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-image: url('../images/ptg4.png');
  background-size: 20px;
  background-color: beige;
  opacity: 0.5;
  background-position: center;
  background-size: repeat;
  border-radius: 0px;
}

/* header using background image */
.header {
  /* background-image: url('../images/ptg_banner2.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 300px; */
  max-height: 300px;
  /* background-color: orange; */
  /* font-size: 40px;
  color: white; */
  display: flex;
  flex-direction: row;
  /* column-gap: 50px; */

  /* use for flexbox */
}

/* set row column flex style */
.row {
  display: flex;
  justify-content: space-around;

}

.headcolumnlogo {
  width: 25%;
  background-color: orange;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "logo", monospace;
  justify-content: center ;
  font-size: 60px;
}   

.headcolumnbanner {
  width: 75%;
  color: Orange;
  text-transform: uppercase;
  font-weight: bolder;
  font-family: "logo", monospace;
  background-image: url('../images/ptg_banner2.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 300px;
  text-indent: 30px;
  font-size: 35px;
  align-content: center;
  padding-bottom: 0px;
}

.headcolumnbanner>h3{
  text-indent: 90px;
  font-style: italic;
  padding-top: 0px;
}

/* set column flex width */
.column1 {
  flex: 1;
}

.column2 {
  flex: 2;
}

.column3 {
  flex: 3;
}

/* responsive for smaller screen size */
@media screen and (max-width: 768px) {
  .columns {
      flex-direction: column;
  }

  .column1 {
      order: 1;
  }

  .column2 {
      order: 2;
  }

  .column3 {
      order: 3;
  }
  footer{
      flex-direction: column;
      flex-wrap: wrap;
  }
  .row{
      flex-direction: column;
      flex-wrap: wrap;
  }
}

/* NAV bar styling */
.nav {
  background-color: darkgray;
  display: flex;
  align-items: center;
  padding: 30px 0;
  justify-content: space-around;
  /* flex-wrap: wrap; */
  border-style: solid;
  border-color: black;
}


/* footer styling */
.footer {
  background-color: darkgray;
  text-align: center;
  align-items: center;
  padding: 30px 0;
  justify-content: center;
  border-style: solid;
  color: black;
  font-weight: bolder;
  margin: 0;
  /* border-color: black; */
}

footer{
/* //  todo */
display: flex;
background-color: rgb(244, 243, 234);
color: white;
justify-content: space-around;
align-content: center;
padding: 20px 0;
}


.imageborders {
  padding: 5px;
  margin: 5px;
  border-style: solid;
  border-width: 1px;
}

/*  */
/* pretty frames to make stuff pop on the background*/
.frame {
  background-color: rgba(255, 255, 255, 0.80);
  border-radius: 0px;
  padding: 10px;
  margin-top: 0;
}

li {
  margin-left: 15px;
  padding-left: 5px;
  margin-bottom: 10px;

}

img {
  padding: 5px;
}

@font-face {
  font-family: 'logo';
  src: URL('Orbitron-Bold.ttf');
}

/* don't use float!! */
/* .floatright {
          float: right;
  }

  .floatleft {
          float: left;
  } 
      
  .center {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 90%;
  }  */

/*  */