body {
    background-color: ivory; 
    text-align:justify; 
    text-justify: ;
    margin: 0.5vw 0.5vh 0.5vw 0.5vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', arial, sans-serif;
}

A {color: rgb(16, 16, 209) }

A:hover {color: rgb(42, 172, 42);}
A:active{color: red;}

A[Download]:hover {color:rgb(240, 174, 8);}
A[Download]:active{color: rgb(131, 46, 113);}

.testingTheory {font-family: 'Times New Roman', Times, serif; letter-spacing: 0.1em; font-variant-caps: small-caps; font-size: larger}

#closing {display: inline-block; width: 4em; background-color:snow; padding: 1px;}
#closing:hover {color:red;}

.box {
    display: grid;
    width: 100%;
    grid-template-columns: 30%;
    align-items: start;
    justify-content: space-between;
  }

  .box :first-child {
    align-self: center;
}

.check_orientation {display:none;}


@media screen  
and (orientation: portrait)/*
and (max-width : 1200px) */
{
    .check_orientation {display:block;
        text-align: center;
        background-color:honeydew;
        border: 1px solid rgb(1, 73, 1);
     font-size:x-large; color:rgb(6, 143, 13)}
}

}