@media (min-width: 768px) {
  .re-order .row {
    display: flex;
    display: -ms-flex;
    flex-direction: column;
  }


body{
  background-color: black;
background: url("https://known-lighthouse.neocities.org/deep.jpg") repeat scroll 0% 0%;
  text-align: center;
}

.container {
  border: 1px solid white;
  background-color: black;
  font: 1.2em sans-serif;

  height: 500px;
  width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  
  margin: auto;
  margin-top: 70px;
  background: url("moon.jpg");  
  background-repeat: no-repeat;
  background-size: cover;
 min-height: 100%;
  
}

.item {
   position: relative;
  right: 100px;
  display: flex;
    transition: transform 0.3s ease-in-out;
}

.item:hover {

    transform: rotate(15deg);

}

.item2 {
   position: relative;
   bottom: 100px;
   right: 50px;
   display: flex;
}
