* {
  box-sizing: border-box;
}

html {
  background-color: ghostwhite;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: 'Arial Black', sans-serif;
  color: black;
}

a {
  text-decoration: none;
  color: red;
}

a:hover {
  color: cyan;
}

.logo a:hover {
  color: blue;
}

h1 {
  display: inline;
}

h2 {
  font-weight: bolder;
  font-family: 'Arial Black', sans-serif;
}

h3 {
  display: inline;
  font-weight: normal;
  font-family: Arial;
}

b {
  font-size: 1.1em;
  font-weight: bolder;
  font-family: 'Arial Black', sans-serif;
}

.red {
  color: red;
}

.blue {
  font-weight: bolder;
  color: cyan;
}

.darkblue {
  font-weight: bolder;
  color: blue;
}

.orange {
  color: orangered;
}

.yellow {
  color: yellow;
}

#wrapper {
  display: grid;
  height: 100vh;
  /* vh = viewport height */
  grid-template-rows: 2% 1fr;
  /* 7% 1fr; */
  grid-template-columns: 1fr;
  grid-template-areas:
    "header"
    /* header takes 7% of viewport height */
    "content";
  /* content takes rest */
  grid-gap: 48px;
  /* vertical gap between header and content before any content scrolling */
  width: 100%;
  padding-left: 0%;
  padding-right: 0%;
  visibility: hidden;
}



.header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-shrink: 1;
  justify-content: center;
  align-items: center;
  grid-area: header;
  color: #fff;
  /* black; */
  /*background-color: #0a7245;*/
  font-family: 'Arial Black', sans-serif;
  font-size: 1em;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-bottom: 6px solid bisque;
}



#content {
  flex-direction: column;
  overflow: auto;
  /* so the content will scroll */
  font-size: 1em;
  margin-top: 35px;
  /* 35px; */
  font-weight: normal;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
}

#homecontent {
  flex-direction: column;
  overflow: auto;
  /* so the content will scroll */
  font-size: 1em;
  margin-top: 0px;
  /* 35 */

  /* 35px; */
  font-weight: normal;
  color: #fff;
  /* black; */
  background-color: #0a7245;
}

#content>div {
  text-align: center;
}

#homecontent>div {
  text-align: center;
}

.topcontent {
  flex-direction: column;
  flex-grow: 1;
  padding-top: 0;
  /* 75px; */
  margin-top: 0;
  /* 35px; */

}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* otherwise will force all content into 1 column */
  justify-content: center;
  margin-top: 30px;
  padding-left: 0%;
  padding-bottom: 20px;
  /*padding-right: 5%;*/
  flex-grow: 1;
  border-bottom: 2px solid red;
  border-radius: 25px;
  background-color: lavender;
}

.column {
  padding-left: 2px;
  padding-right: 0px;
  justify-content: center;
  /* align-items: center;*/
  flex-grow: 1;
  /*flex-shrink: 1;*/
}

.onecol {
  padding-bottom: 10px;
}

p {
  padding: 0;
  margin: 0;
  text-align: left;
}

/*
.onecol p {
  padding-left: 2px;
}

.row p {
  text-align: left;
  text-indent: 0px;
  margin: 2px;
  padding-left: 2px;
  margin-bottom: 0px;
}
*/
#contacts {
  font-size: 8px;
  border-top: 1px solid black;
}

#logodiv {
  background-color: cornsilk;
  border-bottom: 2px solid bisque;
}

.logo {
  width: 70px;
  margin-top: 8px;
}

.imglogo {
  width: 120px;
  margin-top: 10px;
}

/*
img.imglogo {
  width: 120%;
  max-width: 120%;
  height: auto;
}*/

img.logo {
  width: '30%';
}

.row1 .onecol img {
  max-width: 35%;
  height: auto;
}

.row2 {
  flex-direction: row-reverse;
}

.row2 .onecol {
  /* File handling */
  align-items: stretch;
}

.row3 {
  flex-direction: row-reverse;
}

.row3 .onecol {
  /* File handling */
  align-items: stretch;
}

.row4 {
  flex-direction: row-reverse;
}

.row4 .onecol {
  /* File handling */
  align-items: stretch;
}

.row5 {
  flex-direction: row-reverse;
}

.row5 .onecol img {
  max-width: 35%;
  height: auto;
}

.row5 .onecol {
  flex-basis: 50%;
}

.row6 {
  flex-direction: row-reverse;
}

.row6 .onecol p {
  padding-left: 2px;
}

.row7 {
  flex-direction: row-reverse;
}

.row7 .onecol {
  /* Printing */
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
}

.row8 .onecol {
  /* Self publishing */
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;

}

.row9a .leftcol {
  /* Self publishing */
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
  border: none;
  /* border: 2px solid ghostwhite;*/
}

.row9a .rightcol {
  /* automatic backups */
  justify-content: right;
  align-items: stretch;
}

.row9 .onecol img {
  max-width: 25%;
}

.row9a .onecol img {
  max-width: 25%;
}

.row9b .onecol img {
  max-width: 45%;
}

.row10 .onecol {
  /* Spellchecking */
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
  align-items: stretch;
}



.row11 {
  border-top: 0px solid bisque;
}

.row11 .onecol img {
  max-width: 50%;
}

.row12 .onecol img {
  max-width: 50%;
}

.row13 .onecol img {
  max-width: 50%;
}

.row14,
.row15 {
  margin-top: 0;
}

.row15 .onecol img {
  justify-content: center;
  width: 25%;
  height: auto;
}

.row .row21 {
  background-color: cornsilk;
}

.row21 .onecol img {
  width: 90%;
}

.leftcol {
  flex-basis: 350px;
  flex-grow: 0;
  flex-shrink: 1;
  color: black;
  border-radius: 25px;
  border: 2px solid white;

}

.row .onecol {
  flex-basis: 70%;

}

.row img {
  width: 100%;
  max-width: 100%;
}

.row video {
  width: 100%;
  background-color: white;
}

ul {
  padding-bottom: 20px;
  margin-left: 10px;
}

li {
  list-style-type: square;
  text-align: center;
  /*padding-left: 30%;*/
}

ul li {
  list-style-position: outside;
  list-style-type: square;
  text-align: left;
  padding-left: 10px;
}

.responsive {
  width: 100%;
  max-width: 70px;
  height: auto;
}

.featuretype {
  font-size: 2em;
  font-weight: bolder;
}

.extra {
  font-size: 1.5rem;
}

.smcaps {
  font-variant: small-caps;
  color: black;
  font-size: 1.5rem;
}

img.logoimage {

  max-width: 200px;
  height: auto;
}

img.smallimage {
  width: 6em;
  max-width: 6em;
  height: auto;
}

img.freebie {
  max-width: 340px;
  /*margin-left: 50%;*/
  margin-top: 50px;
  height: auto;
  width: 250px;
  display: inline-block;
}

img.freebie:hover {
  color: cyan;
}

img.formaticon {
  float: center;
  text-align: center;
  width: 70%;
  max-width: 70%;
  height: auto;
}

img.wideicon {
  float: center;
  width: 100%;
  max-width: 100%;
  height: auto;
}

img.uiicon {
  float: center;
  max-width: 100px;
  height: auto;
}

img.coloricon {
  float: center;
  max-width: 40px;
  height: auto;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  #content {
    display: block;
  }

  .row {
    flex-direction: column;
  }

  .column {
    flex: 100%;
    max-width: 100%;
  }
}

.spacer {
  width: 40px;
}


.logo {
  font-size: .8em;
}

.logo:hover {
  -moz-box-shadow: 0 0 10px #ccc;
  -webkit-box-shadow: 0 0 10px #ccc;
  box-shadow: 0 0 10px #ccc;
}

#pricescontent {
  width: 60%;
  margin-left: 200px;
  font-size: 1em;
  padding-left: 12px;
  visibility: visible;

}

button {
  font-size: 1em;
}

#logincontent,
#enterstripe {
  width: 100%;
  font-size: 1em;
  padding-left: 0px;
  margin-left: 0px;
  background-color: #0a7245;
}

#signed {
  font-size: 12px;
}