/* App basics  */

body {
    font-family: "Montserrat", sans-serif;
    color: #1f2329;
    padding: 0;
}

.container { 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-header {
    display: flex;
    justify-content: left;
    padding-left: 55px;
    padding-top: 20px;
}

.app-header .logo img {
    width: 150px;
}

.header-stripes {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 10px;
    top: 0;
    position:absolute;
    left: 0;
}

.header-stripes  .square-1 {
    width: 25%;
    background-color: rgba(212,56,49,1);
}
.header-stripes  .square-2 {
    width: 25%;
    background-color: rgba(240,198,38,1);
}
.header-stripes  .square-3 {
    width: 25%;
    background-color: rgba(2,174,140,1);
}
.header-stripes .square-4 {
    width: 25%;
    background-color: rgba(0,112,185,1);
}

footer {
    padding-bottom: 20px;
    font-size: 13px;
    color: #83898e;
    text-align: center;
}

/* User cards  */
.user-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0; 
}

.user-card {
    padding: 20px;
    margin: 10px;
    border: solid 1px rgb(220, 221, 224);
    border-radius: 9px;
    width: 200px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-size: 15px;
    min-height: 330px;
}


.user-image{
    display: flex;
    justify-content: left;
    padding-bottom: 10px;
}

.user-image img {
    max-width: 100px;
    border-radius: 100%;
}

.user-display-name {
    font-size: 18px;
    line-height: 1.25;
}

.user-info {
    display: flex;
    flex-direction: row;
    line-height: 24px;
    color: #83898e;
    gap: 5px;
}

.user-about {
    display: flex;
    flex-direction: row;
    margin: 15px 0;
    font-size: 14px;
    word-break: normal;
}

.user-more {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-more div {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

/* Feather Lib */

.feather {
    width: 15px;
    height: 15px;
}

