body {
  font-family: Arial, Helvetica, sans-serif;
  /* color: #34532F; */
  color: #C29439;
  background-color: #090E27;
}

.search-container,
.url-container {
  margin: 0 auto;
  padding: 20px;
  background-color: #090E27;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

img {
  width: 100%;
  height: auto;
}

.fotos {
  object-fit: contain;
  width: 100%;
  height: 85%;
}

.container {
  width: 100%;
  height: auto;
  background: gray;
}

.container>div {
  width: 60%;
  height: 100%;
  position: relative;
  float: left;
}

.container>div.lateral {
  width: 20%;
  background-repeat: repeat-y;
  background-position: center;
  background-image:
    url(happyNewYear2026.png);
  background-size: 100% auto;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  width: 100%;
}

.button-3 {
  appearance: none;
  /* background-color: #34532F; */
  background-color: #C29439;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #090E27;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
}

.button-3:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-3:hover {
  /* background-color: #729668; */
  background-color: #FFF8BF;
}

.button-3:focus {
  box-shadow: rgba(114, 150, 104, 0.4) 0 0 0 3px;
  outline: none;
}

.button-3:disabled {
  /* background-color: #34532F; */
  background-color: #FFF8BF;
  border-color: rgba(27, 31, 35, .1);
  color: rgba(255, 255, 255, .8);
  cursor: default;
}

.button-3:active {
  /* background-color: #34532F; */
  background-color: #090E27;
  box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
}

.proximoVideo {
  background: #090E27;
  width: 15%;
  height: 17%;
  left: 85%;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  z-index: 30;
  position: absolute;
  font-size: 2.0rem;
  text-align: center;
  /* color:#34532F; */
  color: #C29439;
}

.tudo {
  background: #090E27;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.container-princ {
  background: #090E27;
  width: 15%;
  height: 17%;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  z-index: 30;
  position: absolute;
}

#timer {
  color: #222;
  font-size: 4rem;
  text-align: center;
}

#remainder {
  font-size: 2.0rem;
  /* color:#34532F; */
  color: #C29439;
  padding-left: 0.25rem;
  display: inline-block;
  background-color: #090E27;
}

@media screen and (max-width: 780px) {
  #timer .label {
    font-size: 1.5rem;
  }
}

.mensagem {
  font-size: 3.0rem;
  background-color: black;
  /* color:#34532F; */
  color: #090E27;
  padding-left: 0.25rem;
  display: inline-block;
  width: 100%;
  height: 15%;
  text-align: center;
}

.grid-container {
  margin: 0 auto;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.grid-item {
  position: relative;
  width: 200px;
  height: auto;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: auto;
}


.grid-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
}

.grid-item .overlay button {
  margin: 5px;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  display: none;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}