*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    color: #ffbbff;
    text-decoration: none;
}

body{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1{
    margin-bottom: 70px;
    color: rgb(0, 238, 255);
    text-align: center;

}

@media (max-width:600px) {
    h1{
        text-align: center;
    }

    .container{
        padding-left: 100px;
        padding-right: 100px;

    }
    .container2{
        padding-bottom: 0px;
        margin: auto;
        padding-left: 30px;
    }
    h1{
        margin-top: 50px;
        margin-left: 20px;
        width: 66%;
        text-align: center;
        margin-left: 100px;
    }
    
}

@media (max-width:600px) {
    h1{
        text-align: center;
    }

    .container{
        padding-left: 100px;
        padding-right: 100px;

    }
    .container2{
        padding-bottom: 0px;
        margin: auto;
        padding-left: 30px;
    }
    h1{
        margin-top: 50px;
        margin-left: 20px;
        width: 66%;
        text-align: center;
        margin-left: 100px;
    }
    
}

h1{
    box-shadow: 0 0 5px rgb(40, 209, 209),
    0 0 5px rgb(40, 209, 209),
    0 0 3px rgb(40, 209, 209),
    0 0 6px rgb(40, 209, 209);
    background: none;
    border-radius: 10px;
    margin-top: 50px;
}

.container{
    width: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.container .btn{
    position: relative;
    width: 155px;
    height: 50px;
    margin: 20px;
}

.container .btn a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4d014d;
    box-shadow: 0 15px 35px rgba(25, 0, 255, 0.377);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    z-index: 1;
    font-weight: 400;
    overflow: hidden;
    transition: 0.5s;
    
}

.container .btn:hover a{
    letter-spacing: 3px;
}

.container .btn a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left,rgba(0, 217, 255, 0.568), transparent);
    transform: skewX(45deg) translateX(0);
    transition: 0.5s;
}

.container .btn:hover a::before{
    transform: skewX(45deg) translateX(200%);
}



.container .btn:hover::before{
    bottom: 0;
    height: 50%;
    width: 80%;
    border-radius: 30px;
    transition-delay: 0.5s;
}

