body{
    margin: 0%;
    padding: 0%;
    background: rgb(21, 21, 41);
    display: flex;
}

.card{
    position: relative;
    height: 350px;
    width: 300px;
    top: 150px;
    left: 250px;
    display: inline-block;
    background: rgb(29, 30, 46);
    margin: 0 50px;
    border: 5px solid rgb(58, 57, 57);
    transition: all 1s;
}

.card::before{
    position: absolute;
    content: '';
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg,rgb(255,17,17), rgb(18,18,43), rgb(18,18,43), rgb(253,11,11));
    z-index: -1;
    filter: blur(15px);
}

.card:nth-child(2)::before{
    position: absolute;
    content: '';
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg,rgb(57,255,17), rgb(18,18,43), rgb(18,18,43), rgb(253,11,11));
    z-index: -1;
    filter: blur(15px);
}

.card:hover{
    transform: translateY(-20px);
}

.card::after{
    position: absolute;
    content: '';
    height: 100%;
    width: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: 0%;
    left: 0;
}

h1{
    position: relative;
    font-size: 3em;
    color: rgba(201, 193, 193, 0.856);
    left: 21px;
}
p{
    position: relative;
    font-size: 1.5em;
    color: rgba(221, 214, 214, 0.781);
    left: 20px;
}
button{
    position: relative;
    height: 35px;
    width: 150px;
    left: 27%;
    border: none;
    outline: none;
    background: yellow;
    border-radius: 20px;
    font-size: 1.2em;
}