.profile_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 700px;
    margin: 30px;
}

.profile_container h1 {
    color: white;
}

.profile_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*border: 2px solid white;*/
    padding: 10px;
    margin: 10px;
    margin-bottom: 0;
}

.profile_card img {
    height: 220px;
    width: 220px;
    margin: 20px;
    border-radius: 100%;
    border: 4px solid white;
}

.profile_card h2,
.profile_card p {
    color: white;
    text-align: center;
}

.profile_card_txts {
    width: 70%;
    opacity: 0;
    
    transform: translateX(-100%);
    transition: all 1s;
}

.profile_card_txts p,
.profile_card_txts h2 {
    font-style: italic;
}

.profile_card_txts h2 {
    margin: 0;
    padding: 5px;
}

.profile_card_txts p {
    padding: 10px;
}

.profile_links{
    border: 2px solid white;
    padding: 10px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s;
}

.profile_links ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.profile_links a{
    color: white;
    text-decoration: none;
    padding: 20px;
    transition: 0.2s;
    margin-right: 10px;
    margin-left: 10px;
}

.profile_links #github:hover{
    background-color: white;
    color: black;
    border-radius: 10px;
}

.profile_links #linkedin:hover{
    color: white;
    background-color: rgb(23, 57, 210);
    border-radius: 10px;
}

.profile_links #instagram:hover{
    background-image: linear-gradient(to right, rgb(227, 15, 121), rgb(231, 9, 9), rgb(255, 64, 0)    );
    color: white;
    border-radius: 10px;
}