#contentinfo p {
   font-size:1.4em;
   border-width: 2px;
   border-style: solid;
   border-color; #FFF
   border-radius: 6px;
   line-height: 20px;
   margin: 30px;
   padding-bottom: 20px;
   padding-left: 30px;
   text-align: justify;
   width: 800px;
   color: red; 
}


.pad {
  clear:left;
  height:2px;
  margin-top:2px;
  margin-right:20px;
  margin-bottom:2px;
  margin-left:20px;
 }

.button {
    background-color: #006633;
    border: none;
    color: white;
    padding: 5px 15px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}

.button:hover {
    background-color: green;
}
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ayat {
    position: relative;
    font-size:1.3em;
    width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    background-color: #FFFFFF;
    color: #006633;
    text-align: center;
    border-radius: 6px;
        border-style: solid;
    border-color: #006633;
    padding: 8px 0;
}

.instructions {
    position: relative;
    font-family: "Verdana";
    font-size:1.1em;
    width: 800px;
    right: 0px;
    height: 25px;
    background-color: #FFFFFF;
    color: #006633;
    text-align: center;
    border-style: solid;
    border-radius: 6px;
    padding: 8px 0;
    
}

.intro {
    position: relative;
    font-family: "Verdana";
    font-size:1.1em;
    width: 800px;
    right: 0px;
    height: 40px;
    background-color: #FFFFFF;
    color: #000000;
    text-align: center;
    padding:0px 0px 0px 2px;
    
}
/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    font-size: 1.4em;
    width: 800px;
    height: 100px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    top: 0px;
    right: -400px;
    border: 0px solid #73AD21;
    margin-left: +40px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;    animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
}

2@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}
