

.page_show_2 {
  order: 2;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 90%;
  max-height: 100vh;
  min-height: 100vh;
  margin: auto;
}

.page2_wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 50vh;
}
.content {
  flex: 2;
  
}
.content_img {
  flex: 1.5;
  
}

.content_img img {
  width: 100%;
}

.page_show_2 h1 {
  text-transform: uppercase;
    color: #000;
  font-size: 2vw;
  text-decoration: none;
  padding-bottom: 15px;
}

.page_show_2 p {
    color: #000;
    font-size: 1vw;
  text-decoration: none;
}
@media screen and  (max-width: 980px) {
  
  .page_show_2 h1 {
    font-size: 1.2rem;
  }

  .page_show_2 p {
    font-size: 0.8rem;
  }
  .page2_wrapper {
    flex-direction: column;
    height: 80vh;
  }
  .content_img {
    height: 100%;
  }
  
}
@media screen and  (max-device-width: 980px) {

    .page_show_2 h1 {
      font-size: 1.2rem;
    }

    .page_show_2 p {
      font-size: 0.8rem;
    }
    
.page2_wrapper {
  flex-direction: column;
  height: 80vh;
}
.content_img {
  height: 100%;
}

}

@media screen and (orientation: landscape) and  (max-device-width: 980px)  {


  .page_show_2 h1 {
    font-size: 1.2rem;
  }

  .page_show_2 p {
    font-size: 0.8rem;
  }
  
.page2_wrapper {
  flex-direction: row;
  justify-content: center;
  justify-items: center;
}
.content_img {
  width: 30%;
}

}