@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500;700&display=swap');
body {
    font-family: 'Source Code Pro', monospace;
    margin: 0;
    color: #ffffff;
    background-color: #000000;
}

a {
    transition: 0.5s;
    text-decoration: none;
    font-weight: 700;
    z-index: 1;
    color: #101010;
}

@media screen and (max-width: 960px) {
    .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }
}

a:hover {
    transition: 0.5s;
    color: #ffffff;
    text-decoration: line-through;
}

.container {
    margin-top: 10%;
    display: flex;
    justify-content: center;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 50px;
}

.box {
    position: relative;
    width: 320px;
    height: 400px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 40px 30px;
    transition: 0.5s;
}

.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 60%;
    height: 100%;
    background: #FF4B2B;
    background: -webkit-linear-gradient(to right, #FF416C, #FF4B2B);
    background: linear-gradient(to right, #ffffff, #000000);
    border-radius: 8px;
    transition: 0.5s;
    transform: skewX(15deg);
}

.box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 60%;
    height: 100%;
    background: #FF4B2B;
    background: -webkit-linear-gradient(to right, #FF416C, #FF4B2B);
    background: linear-gradient(to right, #ffffff, #000000);
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
    filter: blur(30px);
    transition: 0.5s;
}

.box:hover::before,
.box:hover::after {
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
}

.content {
    position: relative;
    left: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: 0.5s;
    color: #0c0d0d;
    z-index: 1;
}

.content:hover {
    left: -6px;
    color: #ffffff;
    padding: 60px 40px;
}

.box2 {
    position: relative;
    width: 320px;
    height: 400px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 40px 30px;
    transition: 0.5s;
}

.box2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 60%;
    height: 100%;
    background: #FF4B2B;
    background: -webkit-linear-gradient(to right, #1500ff, #ffffff);
    background: linear-gradient(to right, #414141, #ffffff);
    border-radius: 8px;
    transition: 0.5s;
    transform: skewX(-15deg);
}

.box2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 60%;
    height: 100%;
    background: #FF4B2B;
    background: -webkit-linear-gradient(to right, #FF416C, #FF4B2B);
    background: linear-gradient(to right, #ffffff, #000000);
    border-radius: 8px;
    transform: skewX(-15deg);
    transition: 0.5s;
    filter: blur(30px);
    transition: 0.5s;
}

.box2:hover::before,
.box2:hover::after {
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
}