html{

background-image: url(desktop-1920x1080.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;

}
body{

color: aliceblue;

}
h1{
text-align: center;
font-family: 'Lato', sans-serif;
font-weight: 999999;
font-size: 50px;
color: rgb(255, 255, 255);
}
img{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 86%;
 }
 a#DIAMOND {
 padding: 5px;
 
border-style: solid;
 
border-radius: 10px;
 
display: block;
 
margin-left: auto;
 
margin-right: auto;
 
text-align: center;
 
font-family: 'Lato', sans-serif;
 
font-weight: 999999;
 
font-size: 50px;
 
color: rgb(255, 255, 255);
 
background-color: rgb(0, 0, 8);
transform: scaleX(0.90);

 }

  
  

button#name{
    --green: #ffffff;
    font-size: 15px;
    padding: 0.7em 2.7em;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.3s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 1%, transparent 40%,transparent 60% , rgba(0, 0, 0, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(252, 252, 252, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
  }
  
  button:hover {
    color: #ff0000;
    box-shadow: inset 0 0 10px rgba(247, 3, 3, 0.6), 0 0 9px 3px rgba(241, 7, 7, 0.2);
  }
  
  button:before {
    content: "";
    position: absolute;
    left: -4em;
    width: 4em;
    height: 100%;
    top: 0;
    transition: transform .4s ease-in-out;
    background: linear-gradient(to right, transparent 1%, rgba(236, 14, 14, 0.137) 40%,rgba(233, 23, 23, 0.233) 60% , transparent 100%);
  }
  
  button:hover:before {
    transform: translateX(15em);
  }