.container {
    min-height: 100vh;
    display: flex;
}

.left {
    display: flex;
    flex-direction: column;
    width: 30%;
    justify-content: center;
    align-items: center;
    background: url('/background.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.right {
    display: flex;
    flex-direction: column;
    width: 70%;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.desc {
    font-size: .9rem;
    color: var(--sub-text);
}

a {
    color: var(--primary);
    text-decoration: none;
}

.button.x {
    max-width: 320px;
    display: flex;
    padding: 0.5rem 1.4rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid rgba(86, 98, 246, 0.25);
    gap: 0.75rem;
    color: #ffffff;
    background-color: #5662f6;
    cursor: pointer;
    transition: all 0.6s ease;
    text-decoration: none;
}

.button.x svg {
    height: 24px;
    width: 24px;
    fill: #fff;
    margin-right: 0.5rem;
}

.button.x:hover {
    transform: scale(1.02);
    background-color: rgb(119, 133, 204);
    box-shadow: 0 2px 4px rgba(119, 133, 204, 0.1);
}

.button.x:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
}

.button.x:active {
    transform: scale(0.98);
    opacity: 0.8;
}

.card {
    width: 350px;
    height: 150px;
    background-color: var(--background-900);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    animation: upDown 2s infinite;
    transition: all 0.3s ease;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.card-descripton {
    font-size: .8rem;
    color: var(--sub-text);
    margin-bottom: 1rem;
    width: 80%;
}

.card-link {
    font-size: .9rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
    transition: all 0.3s ease;
}

@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .button.x {
        max-width: 100%;
    }

    .left {
        display: none;
    }

    .right {
        width: 100%;
    }
}