h1{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 100px;
}
.container{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: fit-content;
}
.container a{
   text-decoration: none;
   height: 40px;
   width: 150px;
   background-color:  #6151c2;
   border-radius: 8px;
   color: rgb(253, 253, 253);
   font-weight: 600;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all 0.3s ease;


}
.container a:hover{
    background-color: #e9e8f1;
    color: rgb(78, 68, 231);
    transform: scale(1.05);
    box-shadow:   inset   10px 15px 15px -15px  #000000c2   ;
}
button{
    margin-top: 20px;
    height: 40px;
   width: 150px;
   background-color:  #5656e0;
   border-radius: 8px;
   color: rgb(253, 253, 253);
   font-weight: 800;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all 0.3s ease;
   border: none;
}
button:hover{
    background-color: #e9e8f1;
    color: rgb(78, 68, 231);
    transform: scale(1.05);
    box-shadow:   inset   10px 15px 15px -15px  #000000c2   ;
}