.pfp {
    border-radius: 50%;
    width: 35%;
    height: 35%;
}



.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
}

.col-1 {
    flex-basis: 40%;
    position: relative;
    margin: 50px;
}

.col-1 h2 {
    font-size: 40px;
    margin-bottom: 2%;
}

.col-1 p {
    font-size: 18px;
}

#button1 {
    margin-top: 2%;
    margin-left: 40%;
    width: 140px;
    padding: 12px 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-style: none;
    background-color: rgb(46 38 40);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#button2 {
    margin-top: 0.5%;
    margin-left: 40%;
    width: 140px;
    padding: 12px 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-style: none;
    background-color: rgb(46 38 40);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#button1:hover {
    cursor: pointer;
    transition: all 0.5s ease-out;
    background-color: #ebe0e0;
    color: #181926;
    .github-icon {
        filter: invert(0%)
    }
}

#button2:hover {
    cursor: pointer;
    transition: all 0.5s ease-out;
    background-color: #ebe0e0;
    color: #181926;
}

.col-2 {
    position: relative;
    flex-basis: 60%;
    display: flex;
    align-items: center;
}


.github-icon {
    width: 20%;
    background: transparent;
    filter: invert(90%) sepia(10%) saturate(70%) hue-rotate(350deg) brightness(100%) contrast(100%);

}


.socials-link img {
    height: 30px;
    margin: 20px;
    cursor: pointer;
    filter: invert(90%) sepia(10%) saturate(70%) hue-rotate(350deg) brightness(100%) contrast(100%);
    background: none;
}

.socials-link {
    text-align: center;
    background: none;
}

@media only screen and (max-width:700px) {

    .row {
        flex-direction: column-reverse;
    }

    .col-1 h2 {
        text-align: center;
    }

    .col-1 a button {
        position: relative;
        right: 12%;
    }

    .col-2 {
        justify-content: center;
    }

    .col-2 .pfp {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}
