*{
    margin:0;
    padding:0;
    border:0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;  
  }




  .titulo {
    padding: 80px;
    text-align: center;
    background: orangered;
    color: white;
  }

  .titulo h1 {
    font-size: 50px;
  }

  .opções {
    overflow: hidden;
    background-color: white; 
  }

  .opções p {
    float: center;
    display: block;
    color: orangered;
    text-align: center;
    padding: 14px 20px;
    font-size: 20px;
}

.opções p:hover {
    background-color: rgba(265, 59, 0, 0.5);
    color:white;
}

.opções a {
color: orangered;
}

a{
 cursor: pointer;
 display:block;

}

a :hover{
  background-color: rgba(265, 59, 0, 0.5);
  color: white;

}

.d{
  color: white;
  background-color: orangered;
}

.data{
  color: white;
  background-color: orangered;
}


.row{
  width: 100%;
  height: auto; 
  align-content: center; 
}



.img1{
  width: 100%;
  height: auto;
  display: block;
  margin-right: 0px;
  margin-left: 0px;
  align-content: center;
}

.girar {
  cursor: pointer;
  transform-style: preserve-3d;
  width: 100%;
  height: auto;
}

.girar:hover {
    animation: spin 5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}


@media screen and (max-width: 500px) {
  .img1{
  width: 100vw;
  }

}