﻿/* Landscape: width > height */
@media (orientation: landscape) {
  #wtLanscape { display: block; }
  #wtPotrait { display: none; }
}

/* Portrait: height >= width */
@media (orientation: portrait) {
  #wtLanscape { display: none; }
  #wtPotrait { display: block; }
}


body{
    background-color: #00006b;
}
