﻿body, html {
    height: 100%;
  }
  
  * {
    box-sizing:border-box;
  }
  
   .bg-image {
    /* The image used */
    background-image: url("bird.jpg");
  
    /* Add the blur effect */
    filter: blur(5px);
    -webkit-filter: blur(5px);
  
    /* Full height */
    height:100%; 
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
  }
 
  /* Position text in the middle of the page/image */
  .bg-text {
    background-color:none; /* Fallback color */
    background-color:none; /* Black w/opacity/see-through */
    color: rgb(241, 14, 63);
    font-weight: bold;
    border: 0px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
  } 
 
 
 h1
 {
     border: blue;
     text-align-last: center;
     font-size: 80px;
     font-family:'Franklin Gothic Medium';
     color:indigo;
 }
 
ol li{
  list-style-type:none;
  position:relative;
  text-align: center;
}
li
{
padding-bottom: 25px;
font-size:35px;
font-family:arial;
color:rgb(1, 36, 143);
font-style:bold;
text-shadow: 0 0 2px black, 0 0 3px white;
}

  
  div.scrollmenu 
 {
 background-color:none;
 overflow: auto;
 white-space: nowrap;
 width:520px;
 }
 div.scrollmenu a
 {
 display: inline-block;
 font-family:SimHei;
 font-size:18px;
 background-color:rgb(232, 240, 234);
 color: rgb(74, 167, 243);
 text-align: center;
 padding: 12px;
 width:109px;
 text-decoration: none;
 border-radius:0px 35px 0px 35px;
 }
 div.scrollmenu a:hover
 {
 background-color:rgb(228, 133, 133);
 color:rgb(42, 5, 109);
 }
 