:root {
  --tag-green: #80a03e;
  --tag-orange: #d98b4c;
  --tag-blue: #6cc9d9;
  --space: #476a6f;
  --bridge: #bb4430;
  --wb-blue: #252839;
  --max-yellow: #f2b632;
}

.header {
  background-color: #6cc9d9;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.bug-report {
  font-family: 'Cabin', sans-serif;
}
.logo {
  width: 485px;
  height: 89px;
}
.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 8px;
  align-items: center;
  border: solid 10px #6cc9d9;
}

img {
  display: flex;
}
.keywords_img {
  max-width: 25vw;
  display: block;
  margin: auto;
}
button {
  font-family: 'Cabin', sans-serif;
}
.side-bar {
  grid-column: 8 / 12;
  background-color: lightgray;
  border: solid 2px #80a03e;
  height: 100%;
  padding: 20px;
}

.app {
  padding: 20px;
  grid-column: 1 / 7;
}

button.show {
  background-color: #6cc9d9;
  color: #fff;
  border-color: #d98b4c;
}

button.gen {
  background-color: #6cc9d9;
  color: #fff;
  border-color: #d98b4c;
  font-size: 20px;
  width: 45%;
  height: 50px;
}
button.reset {
  font-size: 20px;
  width: 45%;
  height: 50px;
  float: right;
}
a {
  color: #6cc9d9;
}
.instructions-list {
  font-family: 'Telex', sans-serif;
  font-size: larger;
}

.disclaimer-container {
  font-family: 'Telex', sans-serif;
  text-align: center;
  background-color: lightgray;
  display: grid;
}

h1,
h2,
h3,
h4 {
  font-family: 'Oswald', sans-serif;
}

.io {
  padding: 20px;
  display: grid;
  grid: auto / 250px 250px auto;
}

.donate {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin: auto;
  padding: 5%;
}
@media only screen and (max-width: 1200px) {
  .app {
    grid-column: 1;
    grid-row: 1;
    padding: 0%;
    width: auto;
    height: auto;
  }
  .tags {
    padding-right: 5px;
  }
  .io {
    max-width: 80vw;
    display: block;
  }
  .donate {
    display: none;
  }
  .container {
    display: block;
    max-width: 90vw;
  }
  #input #output #wordBox {
    padding: 0;
    margin: 0;
    display: block;
  }
  .keywords .tags .unused {
    display: block;
    align-items: stretch;
    justify-content: space-evenly;
  }
  #unwanted {
    max-width: 65vw;
  }
  button.gen {
    width: 25vw;
    max-width: 50vw;
    display: inline-block;
    margin: 2px;
  }
  .disclaimer-container {
    display: none;
  }
  img {
    max-width: 90vw;
  }
}

.shown {
  display: block;
}
.hidden {
  display: none;
}
/* The Modal (background) */
#insModal {
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 75%;
  /* Full width */
  height: auto;
  /* 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 */
  -webkit-animation-name: fadeIn;
  /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
  border: 5px #6cc9d9 solid;
}
/* Modal Content */
.modal-content {
  position: fixed;
  top: 0;
  background-color: #fefefe;
  width: auto;
  height: auto;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}

/* The Close Button */
.close {
  color: #6cc9d9;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
}

.modal-body {
  padding: 2px 16px;
  border: #80a03e 5px;
}

.bugReport {
  float: left;
  margin-left: 30px;
}

.ins-img {
  border: #80a03e 5px;
}
header {
  display: grid;
}
.etsy-link {
  position: relative;
  left: 0;
}
.copyright {
  color: white;
  justify-content: flex-start;
  padding-right: 30px;
}
.bottom-nav::before {
  content: '||';
  color: white;
}
.bottom-nav a {
  text-decoration: none;
  padding: 15px;
  color: white;
}

.bottom-nav a:hover {
  color: var(--tag-green);
}
.footer {
  background: var(--tag-blue);
  /* width: 90vw; */
  display: flex;
  padding: 10px;
  box-sizing: border-box;
  margin: auto;
}
.etsy-copyright {
  font-family: 'Cabin', sans-serif;
}
.donate {
  display: flex;
  justify-content: center;
  padding: 10vh;
}
