* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gradient:
        linear-gradient(45deg, #43f14c, #c579f8);
    --card: #272524;
    --primary-color: #645bff;
    --secondary-color: #00f7ff;
    --hover-color: #111;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
}

body {
    background: var(--gradient);
    height: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fcfdfc;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: var(--card);
}

.card {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    min-width: min-content;
    width: 50%;
    height: min-content;
    padding: 30px;
    background: var(--card);
    border-radius: 24px;
}

.card img {
    max-width: 280px;
    width: 36vw;
    height: 300px;
    object-fit: cover;
    border-radius: inherit;
    transition: border-radius 0.3s;
}

.card h2 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    opacity: 0.75;
}

.card p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.5;
}

.links {
    position: inherit;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
}

.links>button {
    background-color: #fcfdfc;
    border: rgb(27, 233, 0) 20px;
    margin: 10px;
    padding: 10px 25px;
    border-radius: 5rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    text-align: left;
    font-size: medium;
    font-weight: 300;
    transform: translateY(0);
    transition: all 0.3s;
}

.links>button:hover {
    background-color: #43f14c;
}

.arrow-wrapper {
    text-align: right;
    margin-left: 10px;
    flex-grow: 2;
    align-self: center;
}



@media (width <=440px) {
    .card img {
        height: 50vw;
        width: 50vw;
        border-radius: 50%;
        border: 12px solid var(--card);
        margin: -140px 0 30px 0;
    }

    .card {
        margin-top: 140px;
        width: 80%;
        text-align: center;
        flex-direction: column;
    }

    .card h2 {
        margin-right: 0;
        font-size: 18px;
    }

    .card p {
        max-width: 360px;
    }

    .links {
        justify-content: center;
    }

    .links>button {
        margin: 2%;
        padding: 10px 25px;
        border-radius: 5rem;
        text-align: left;
        font-size: small;
        font-weight: 300;

    }
}