
html {height:100vh; width:100%; background-color:#3385ff;}
body {width:99%; text-align: left; color: black; background-color:transparent; }

h1 { color:black; font-weight:bold;   text-align: center; font-size: 36px; background-color: transparent;}
h2 { color:black; font-weight:bold;   text-align: center; font-size: 28px; background-color: transparent;}
h3 { color:black; font-weight:bold;   text-align: center;}
h4 { color:black; font-weight:normal; text-align: center;}
h5 { color:black; font-weight:normal; text-align: center;}
h6 { color:black; font-weight:normal; text-align: center;}
em { font-weight:600; }

p {color:black; text-indent: 50px; font-size: 13pt; margin: 40px; text-align:justify; line-height: 1.6;}

img {width: 350px; height: 250px; 
    display: inline-block;
    margin: 0;
    min-width: 272px;
    border: 5px #899FF2;
    padding: 5px;
}
.btn{background-color:pink; border-radius: 5px; border: none; color: #fff;
    margin: 1rem; padding: 1.5rem 3rem; font-size: 1.2rem; font-family: inherit; cursor: pointer;}
.btn:focus {outline:none;}
.btn:hover {opacity: 0.9;}
 #four {width:520px; height:650px; display:block; margin:0;}
 #three {width: 320px; height: 400px; display:block; margin:0;} 

 #one {width:1300px; height:375px;  margin-top: -10px; margin-left: -10px; padding: 0;}       
   
 #two {width:850px; height:400px;}      

 #jaid {height:200px;}
 
  .shadowbox1 {width: 75em;
  border: 1px solid #333;
  box-shadow: 8px 8px 5px #444;
  padding: 15px 12px 15px 12px;
  background-image: linear-gradient(180deg, #fff, #ddd 40%, #ccc);
  margin: 25px 10px 10px 10px;
  text-align: center;
}
 .shadowbox {
  width: 75em;
  border: 1px solid #333;
  box-shadow: 8px 8px 5px #444;
  padding: 15px 12px;
  background-image: linear-gradient(180deg, #fff, #ddd 40%, #ccc);
  margin: 20px 10px 10px 10px ;
}

inset {
  position: static;
  background-color: lightblue;
  margin: 50px;
  padding: 10px;
  display: block;
  text-align: left;
  border-radius: 5px;
}
div {display: flex;
  justify-content: center;}
span {display: flex;
  justify-content: center;    
}
.shadowbox1{
    
}
a { color: black; font-weight: bold;}

/* Style The Dropdown Button */
.dropbtn {
    background-color: #3F81C4;
    color: white;
    font-style: center;
    padding: 5px;
    font-size: 13px;
    border: 2px solid;
    border-color: #C43F3F;
    border-radius: 8px;
    cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    margin: 7px;
    padding: 0px;
    border: 2px;
    background-color: transparent;
    border-radius: 8px;
    text-align: center;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    position: relative;
    display: none;
    background-color: #3F81C4;
    min-width: 100px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 5px;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 8px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #C43F3F;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    border: 2px;
    border-radius: 8px;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3F81C4;
}


/*Popup Section*/
.popup .overlay {
   position:fixed;
   top:0px;
   left:0px;
width:100vw;
height:100vh;
background:rgba(0,0,0,0.7);
z-index:1;
display:none;
}

.popup .content{
position:absolute;
top:30%;
left:50%;
transform:translate(-50%, -50%) scale(0);
background:#fff;
width:450px;
height:220px;
border: 10px double blue;
border-radius:25px;
z-index:2;
text-align:center;
padding:20px;
box-sizing:border-box;
}
.popup .close-btn {
cursor:pointer;
position:absolute;
right:15px;
top:15px;
width:30px;
height:30px;
background:#222;
color:#fff;
font-size:25px;
font-weight:600;
line-height:30px;
text-align:center;
border-radius:50%;
}
.popup.active .overlay {
  display:block;
}
.popup.active .content {
   transition:all 100ms ease-in-out;
   transform:translate(-50%,-50%) scale(1);
}
