body {
  font-family: "arial", sans-serif;
}

/* Default */

.wrapper {
  display: flex;
  flex-direction: column;

  justify-content: space-between;
  align-items: center;
}

.wrapper .col1 {
  flex: 1;
  margin: 0;
}

.wrapper .col2 {
  flex: 2;
  margin-top: 3%;
}

@media screen and (min-width: 1200px) {
  /*
  body {
    min-width: 1200px;
    max-width: 1400px;
  }
  */

  .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .wrapper .col1 {
    flex: 1;
    margin-right: 3%;
  }

  .wrapper .col2 {
    flex: 1;
    margin: 0%;
  }
}

body h1 {
  text-align: center;
}

.flash {
  text-align: center;
}

.flash span {
  color: white;
  background: green;
  padding: 5px;
  font-weight: bold;
  font-size: 14px;
  border: black solid 1px;
}
.flash span.hide {
  opacity: 0;
  transition: visibility 0s 4s, opacity 2s linear;
}

.photo_heading {
  display: none;
  padding: 10px;
  background-color: white;
}

@media screen and (max-width: 1200px) {
  .photo_heading {
    background-color: white;
  }
}

/*
.photo_heading #photo_info_1 {
  float: left;
}
.photo_heading #photo_info_2 {
  float: right;
}
*/

.img_input {
  margin: 10px;
}

.img_input picture {
  width: 100%;
}

.img_input button {
  padding: 10px;
  background-color: #F0F0F0;
  border: 0px;
}
.img_input button:hover {
  border: black solid 2px;
  background-color: gray;
  padding: 8px;
}

/*
.img_input #btn_1 {
  margin-left: 20px;
  float: left;
}

.img_input #btn_2 {
  margin-right: 20px;
  float: right;
}
*/

.vote_label {
  font-size: 20px;
}
.vote_label #btn_label_1 {
  float: left;
}
.vote_label #btn_label_2 {
  float: right;
}
.vote_label label:hover {
  cursor: pointer;
  text-decoration: underline;
}

.clear {
  clear: both;
}

.links {
  text-align: center;
}
.links a {
  font: Helvetica;
  font-size: 20px;
  text-color: black;
}
.links a:visited {
  color: black;
}
.links a:hover {
  cursor: pointer;
  text-decoration: none;
  color: gray;
}

.top_info {
  text-align: center;
  font-size: 14px;
}
.top_info label {
  font-weight: bold;
}

.top_list {
  color: black;
  font-size: 30px;
}

.top_list li {
  font-weight: bold;
  text-align: center;
}

.top_list li img {
  padding: 6px;
  background-color: gray;
  border: none;
}

.filler hr {
  width: 80%;
}

.hidden {
  display: none;
}

.visible {
  display: inline;
}
