@media only screen and (max-width: 320px) {    
    .profile_links{
        border: 2px solid white;
        padding: 2px;
        margin: 2px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .profile_links a{
        color: white;
        text-decoration: none;
        padding: 15px;
        transition: 0.2s;
        margin-right: 5px;
        margin-left: 5px;
    }
}

@media only screen and (max-width: 600px) {    
    .profile_links{
        border: 2px solid white;
        padding: 2px;
        margin: 2px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .profile_links a{
        color: white;
        text-decoration: none;
        padding: 15px;
        transition: 0.2s;
        margin-right: 5px;
        margin-left: 5px;
    }
}

@media only screen and (min-width: 600px) {
    .profile_container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        min-height: 900px;
        margin: 30px;
    }
}

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

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 992px) {
    .profile_container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        min-height: 800px;
        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: 260px;
        width: 260px;
        margin: 20px;
        border-radius: 100%;
        border: 4px solid white;
    }
    
    .profile_card h2,
    .profile_card p {
        color: white;
        text-align: center;
    }
    
    .profile_card_txts p,
    .profile_card_txts h2 {
        font-style: italic;
    }
    
    .profile_card_txts h2 {
        margin: 0;
        padding: 5px;
    }
    
    .profile_card_txts p {
        padding: 14px;
    }
    
    .profile_links{
        border: 2px solid white;
        padding: 20px;
        margin: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .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: 30px;
        transition: 0.2s;
        margin-right: 12px;
        margin-left: 12px;
    }
}

@media only screen and (min-width: 1200px) {}