* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
}
body {
  background: #3a2a10;
}

#topBtn {
  display: none;
  color: #fff;
  font-size: 3em;
  background-color: #3a2a10;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
}

#topBtn:hover {
  cursor: pointer;
  background-color: #3B8AC4;
}

.logo {
  max-width: 150px;
  max-height: auto;
}

.list {
  border: #D4AF37;
  border-style: solid;
  background: #00140b;
  max-width: 50vw;
}

.column {
  border: #D4AF37;
  border-style: solid;
  float: left;
  width: 50%;
  height: 300px;
  border-style: solid;
  text-align: center;
  overflow: hidden;
}

#columnA {
  font-size: 2em;
  color: #fff;
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  line-height: 150px;
  cursor: auto;
}

/* Clear floats after the columns */

.list:after {
  content: "";
  display: table;
  clear: both;
}

.row {
  max-height: 80%;
}

#img {
  max-width: 200px;
  max-width: 200px;
  margin-top: 10px;
  cursor: pointer;
}

#bt {
  border: #CCBA78;
  border-style: solid;
  outline: 0;
  color: white;
  background-color: #002d18;
  text-align: center;
  width: 100%;
  font-size: 2em;
  height: 60px;
  cursor: pointer;

}

/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
  #bt {
    font: 1em;
  }
  #infoTxt {
    font-size: 1em;
  }
}

.txt {
  border: #D4AF37;
  border-style: solid;
  max-width: 45vw;
  max-height: 100vh;
  border-style: solid;
  position: absolute;
  top: 175px;
  right: 16px;
}

#infoTxt {
  background-color: #00140b;
  color: #fff;
  display: block;
  font-size: 2em;
  
}

footer {
  left: 0;
  bottom: 0;
  width: 100%;
  background: #201c14;
  color: #FFF;
  text-align: center;
}

ul {
  list-style-type: none;
}