body {
    margin: 0;
    background-image: url("sunset.jpg");
    background-size: cover;
    text-align: center;
    font-size: xx-large;
    color: azure;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
}

.cms {
    padding: 30px;
    font-size: 50px;
}

.blnk {
    padding: 30px;
}

.button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #266cdd;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
  }
  
.button:hover {background-color: #3e3f8e}

.button:active {
  background-color: #3e3f8e;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

footer {
  display: table;
  margin: 0px auto 0px auto;
  padding: 10px;
  font-size: 20px;
  background-color:black;
  color:green;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.75;
  transition: 2s;
}

footer a {
  color: green;
}

footer:hover {
  opacity: 1;
}

nav {
  overflow: hidden;
  border: 1px dotted rgba(0, 238, 255, 0.095);
}

.navbox a {
  text-decoration: none;
  display: inline;
  color: rgb(175, 188, 255);
  padding: 14px 16px;
  float: left;
  font-size: large;
  transition: 1s;
}

nav a.dynamic:hover {
  background-color: rgba(0, 128, 0, 0.741);
}