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

.search-container, .url-container {
  margin: 0 auto;
  padding: 20px;
  background-color: #000000;
  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(anonovo.gif);
    background-size: 100% auto;
}

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

.button-3 {
    appearance: none;
    /* background-color: #34532F; */
    background-color: #F3180D;
    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: #FFFFFF;
    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: #D92F18;
  }
  
  .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: #F3180D;
    border-color: rgba(27, 31, 35, .1);
    color: rgba(255, 255, 255, .8);
    cursor: default;
  }
  
  .button-3:active {
    /* background-color: #34532F; */
    background-color: #F3180D;
    box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
  }

.proximoVideo {
    background:#000000;
    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:#FFFFFF;
}

.tudo {
    background: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;  
}
    
.container-princ {
    background: #000000;
    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:#FFFFFF;
    padding-left: 0.25rem;
    display:inline-block;
    background-color: #000000;
}

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

.mensagem {
    font-size: 3.0rem;
    background-color: black;
    /* color:#34532F; */
    color:#F3180D;
    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);
  }
}