body{
    height: 100vh;
    background-image: linear-gradient( to right top, #051937, #004d7a, #008793, #00bf72, #e8eb12);
    display: flex;
    justify-content: center;
    align-items: center;
}
#myButton1{
    background-image: linear-gradient(to right, #a7df18,#ed039e);
    color: rgb(34, 34,34);
    padding: 12px;
    width: 120px;
    border-radius: 20px;
    margin-right: 20px;
    border: none;
    box-shadow: 2px 2px 2px 2px;
    font-weight: bolder;
    font-size: medium;
}

#myButton1:hover{
    background-image: linear-gradient(to right, #ed039e, #a7df18);
    
}
#myButton2{
    background-image: linear-gradient(to right, #a7df18,#ed039e);
    color: rgb(34, 34,34);
    padding: 12px;
    width: 120px;
    border-radius: 20px;
    margin-left: 20PX;
    border: none;
    box-shadow: 2px 2px 2px 2px;
    font-weight: bolder;    
    font-size: medium;
}

#myButton2:hover{
    background-image: linear-gradient(to right, #ed039e, #a7df18);
    
}

section{
    text-align: center;
    border: 1px dotted;
    padding-top: 20px;
    padding-bottom: 80px;
    padding-right: 40px;
    padding-left: 40px;
    box-shadow: 10px 10px 10px 10px;
}

.copyCode{
    width: 300px;
    height: 60px;
    background-color: rgb(212, 212, 213);
    border-left: 2px solid;
    border-color: white;
    padding-top: 20px;
}

.name{
    font-weight: bold;
    padding-bottom: 20px;
    font-size: 44px;
    
}

h1{
    background-image: url('img.jpg');
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: moveBackground 5s linear infinite;
    background-position: 0 0;
    

}

@keyframes moveBackground {
      0% {
        background-position: 0 0; 
      }
      100% {
        background-position: 100% 100%; 
      }
    }

