html, body {
    height: 100%;
}
a {
    color: #333333;
    text-decoration: none !important;
    /* color: #EA3D3D; */
}

a:hover {
    color: #333333;
}

body {
    color: #333333;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background: url('../img/bg_pattern.jpg');
    background-position: center;
    background-size: 1000px 1000px;
    background-color: #f0f3f5;
}

body:before{
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    /* background-color: rgba(238, 237, 209, 0.9); */
    background-color: rgba(239, 239, 239, 0.9);
}

ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-container{
    width: 100%;
    max-width: 400px;
    z-index: 9;
    padding: 15px;
    margin: auto;
    border-radius: 15px;
    background-color: #f0f3f5;
    box-shadow: 0 2px 8px 5px rgba(0, 0, 0, .11);
}

.main-container-inner{
    width: 100%;
    max-width: 370px;
    padding: 15px;
    margin: auto;
}

.profile_picture{
    margin-bottom: 20px;
}

.profile_picture img{
    width: 200px;
}

.link_card{
    background-color: #fafbfc;
    border: 1px solid rgba(234, 61, 61, 0.5);
    margin-bottom: 12px;
    border-radius: 10px;
    padding: 12px 10px 9px 12px;
    transition: all .3s;
}

.link_card:hover{
    background-color: rgba(234, 61, 61, 0.1);
}

.link_card > a{
    display: flex;
    overflow: hidden;
}

.link_card .link_card_col_icon{
    height: 48px;
    min-width: 48px;
    width: 48px;
    margin-right: 17px;
}

.link_card .link_card_col_icon img{
    border-radius: 100%;
}

.link_card_col_info{
    text-align: left;
}

.link_card_info_title,
.link_card_info_subtitle{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link_card_info_title{
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;

}

.link_card_info_subtitle{
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    color: #EA3D3D;
}

@media (max-width: 450px) {
    .main-container {
        max-width: 330px;
    }
    .main-container-inner{
        padding: 0;
        max-width: 330px;
    }
    .link_card_info_subtitle {
        font-size: 13px;
    }
}