body {
    background-color:rgb(33, 37, 41);
    font-family:Verdana, Helvetica, sans-serif;
    max-width: 100%;
    height: 100%;
    color: rgb(255, 255, 255);
    min-height: 100vh;
}

h1 {
  font-size: 2em;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 1em;
  }
}
a { /*removes underlying of hyperlinks*/
  text-decoration: none;
  color:rgb(255, 255, 255);
}
a:hover /*hyperlink hover so you know they're clickable*/
{
  text-decoration: none;
  color:darkgray;
  opacity: .5;
  transition: .1s;
}

* {
    box-sizing:border-box;
}

div img
{
    width: 300px;
    height: 300px;
    border:rgb(197, 197, 197) solid 1px;
    border-bottom-style:dotted;
    border-right-style:dotted;
    padding: 10px;
    object-fit: cover;
}

.flex-container {
    display:flex;
    align-items: center;
    justify-content: center;
    align-content: space-around;
    gap:40px;
    flex-flow: row wrap;
    position: relative;
    /* flex: 1 1 0px; */
    flex-grow: 1;
  }

  .flex-container div {
    flex-basis: 1;
  }

.image-title {
    text-align: center;
  }

.more {
text-align: center;
padding-top: 5px;
}

#numericvalue {
    font-size:175px;
  }

#inputtextarea {
    height: 90%;
    width: 90%;
  }

header {
  display: flex;
  justify-content: center;
  text-align: center;
  border-bottom-style:dotted;
}

header ul {
  padding-inline-start: 0px;
}

header li{
  list-style: none;
}

.footer li{
  list-style: none;
  display:inline-block;
}

.footer ul {
  padding-inline-start: 0px;
}
.footer
{
  /*tbd */
  text-align: center;
  border-top-style:dotted;
}

.certcontainer{
  align-items: stretch;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: start;
  text-align: left;
}

/*overwrites the alignment of the header after pasting */
.certcontainer h1 {
  text-align: center;
}