body{
  background-image:url(https://emmaculatecollege.com.ng/background.jpg), linear-gradient(skyblue,skyblue,skyblue, white,white);
 background-blend-mode: screen;
 background-size:cover;
 margin:0;
 padding:0;
 font-family:Cabin;
 color:navy;
 }
 h2, strong {
     font-family: cabin;
 }
 #head{
     padding:25px;
     height:70px;
     font-family: cabin;
     color:navy;
     text-align:center;
     margin-bottom:30px;
     background-color:skyblue;
     width:100%;
 }
 #head img{
     position:absolute;
     left:5px;
     top:10px;
 }
  #head h3{
    display: inline;
 }
  #head i{
     position:absolute;
     right:20px;
     top:20px;
 }
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

.bot {  
  /* This section calls the slideInFromLeft animation we defined above */
  animation: 1s ease-out 0s 1 slideInFromRight;
  padding:30px;
  background:navy;
  width:80%;
  height:70px;
  border:none;
  color:skyblue;
  margin:20px 10%;
  border-radius:10px;
}
.but {  
  /* This section calls the slideInFromLeft animation we defined above */
  animation: 1s ease-out 0s 1 slideInFromLeft;
  padding:30px;
  background:navy;
  width:80%;
  height:70px;
  border:none;
  margin:20px 10%;
  
  border-radius:10px;
  color:skyblue;
}
.bot a, .but a{
  color:skyblue;
  text-decoration:none;
}
.bot i, .but i{
    font-size:20px;
    margin-left:20px;
}

#wrap{
	width:0;
	height: 100%;
	border: 1px solid navy;
	position:fixed;
	top:0;
	transition:0.5s;
	background-color:navy;
	z-index:98;
	overflow: hidden;
	border-right:3px solid skyblue;}
	#wrap div{
	padding-top:100px;
	}
#wrap a{
    padding:10px;
    color:skyblue;
    display:block;
    text-decoration:none;
    text-align:center;
    font-family: Montserrat;
    font-weight:999;
}
#times{
    color:skyblue;
    margin:30px;
    float:right;
	z-index:99;
	overflow: hidden;
	right:10;
}
#main{
  padding: 30px;
	display: flex;
	justify-content: center;
}
#tc{
     font-family:Montserrat;
    width:0%;
	height: 100%;
	border: 1px solid navy;
	position:fixed;
	left:0;
	top:0;
	transition:0.5s;
	background-color:navy;
	z-index:98;
	overflow-Y:scroll;
	overflow-X: hidden;
	border-right:3px solid skyblue;
	color:skyblue;
	text-align:center;
	}
	#pc{
     font-family:Montserrat;
    width:0%;
	height: 100%;
	border: 1px solid navy;
	position:fixed;
	right:0;
	top:0;
	transition:0.5s;
	background-color:navy;
	z-index:98;
	overflow-Y:scroll;
	overflow-X: hidden;
	border-right:3px solid skyblue;
	color:skyblue;
	text-align:center;
	}
 
 #tc p, #pc p{
     border:2px solid skyblue;
     width:80%;
     margin:3px 7%;
     border-radius:10px;
     padding:10px 5px;
 }
input[type=file]::file-selector-button {
  cursor: pointer;
  height:100%;
  background:skyblue;
  color:navy;
  border:none;
  border-radius:0px 10px 10px 0px;
  transition: background .2s ease-in-out;
}


/* On smaller screens, decrease text size */
@media only screen and (min-width: 720px) {
  #wrapper{
	width: 50%;
	margin-left:25%;
	}
}
* {
  box-sizing: border-box;
}
.row::after {
  content: "";
  clear: both;
  display: table;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
[class*="col-"] {
  float: left;
  padding: 15px;
  border: none;
}
.input-group{
    width:80%;
    background-color:navy;   
    color:skyblue; 
    display:inline-block;
    margin-left:10%;
    height:70px;
    padding:20px;
    border-radius:10px;
}
.input-group-text{
    width:30%;
    padding:0;
}
.input-group .form-control{
    border:none;
    outline:none;
    background-color:transparent;
    color:skyblue;
    height:100%;
    padding:0;
}
.text-success{
    color:green;
}
.text-warning{
    color:yellow;
}
.text-danger{
    color:red;
}
.text-primary{
    color: blue;
}
.bg-success{
    background-color:green;
}
.bg-warning{
    background-color:yellow;
}
.bg-danger{
    background-color:red;
}
.bg-primary{
    background-color: blue;
}