header {font-family: 'Kanit', sans-serif;
		color: ghostwhite;
		text-align: right;
		font-size: small;
		color: darkred;
}
a:visited{  
        color: ghostwhite;  
         }  
a:hover{  
        color: orangered;  
         }  
a:active{  
        color: lightcyan;  
         }  

         ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li{
  display: inline;
}
/*
.boxlogleft {
		display: flex;
		align-self: flex-start;
		flex-flow: column-wrap;
		flex-direction: row-reverse;
		
*/

.navspot{
  display: flex;
  justify-content: space-between;
  align-items: center;


}

button {

	background-color: #215585;
	color: ghostwhite;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(50,125,100,0.25); /* Fallback color */
  background-color: rgba(30,111,111,0.4); /* Black w/ opacity */
  padding: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: rgba(0, 0, 0, 0.25);
  margin: 5px auto; /* 15% from the top and centered */
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
  text-align: center;
    color: whitesmoke;

}

/* The Close Button */
.close {
  /* Position it in the top right corner outside of the modal */
  position: inherit;
 right: 10px;
 top: 0;
  color: ghostwhite;
  font-size: 35px;
  font-weight: bold;
}

/* Close button on hover */
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}
