body {
  touch-action: pan-y;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  max-width: 1180px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2em;
  background: #fffaf9;
  color: #333;
}

a{
  text-decoration: none;
  color: inherit;
}

h1{
  font-size: 22px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.header, .footer {
  text-align: center;
  padding: 32px;
}

.rel{
  margin-top: -20px;
  display: flex;
  align-items: center;
  position: relative; /* Needed for positioning popup */
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

.left{
  text-align: left !important;
}

input {
  font-size: inherit;
  border: none;
  background: none;
  outline: none; /* Remove the outline on focus */
  width: 210px; /* Adjust width as needed */
}

.fa-copy {
    cursor: pointer;
    margin-left: -10px;
    font-size: inherit;
}

.popup {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.popup.show {
  opacity: 1;
  visibility: visible;
}

/* muura 2 tulba peale */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* murra 1 tulba peale */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}