body {

    overflow-y: hidden;

    overflow-x: hidden;
}


header {
    border-bottom: 1px solid grey;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: space-between
}

header h1 {
    font-family: 'Segoe UI ', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    font-size: 1.2vw;
    width: 80vw;
    text-align: center
}

header img {
    height: 3vh;
}

.icons img {
    margin-left: 0.5vw;
    margin-right: 2.5vw;
}

.content .list {
    border-right: solid 1px grey;
    height: 93vh;
    width: 20vw;
}

.content {
    display: flex;
}

.card {
    height: 9vh;

    display: flex;
    padding: 0.5vh 1vw 0.5vh 1vw;
    align-items: center;
    cursor: pointer;

}

.card:hover {
    background-color: #dddddd;
}

.card img {
    height: 7vh;
    border-radius: 100%;
    margin-right: 1vw;
}

.card .friend h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    padding-top: 1vh;
}

.card .friend h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: grey
}

.card .friend {
    height: 7vh;
    line-height: 2.5vh;
}

.convo {
    position: relative;
    width: 80vw;
}

.convo .ecrire {
    position: absolute;
    bottom: 0;
    border-top: 1px solid grey;
    height: 7vh;
    width: 80vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 1vh;
}

input {
    display: inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;

    border: none;
    font: normal 16px/normal "Segoe UI", 'Segoe UI', serif;
    color: rgba(0, 142, 198, 1);
    -o-text-overflow: clip;
    text-overflow: clip;
    background: rgba(255, 255, 255, 1);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.66);
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    height: 7vh;
    font-family: Helvetica;
    width: 70vw;

}

.button {
    background-color: #0084ff;
    -moz-border-radius: 28px;
    -webkit-border-radius: 28px;
    border-radius: 28px;
    border: 1px solid #0084ff;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    padding: 10px 25px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #2f6627;
    text-align: center;
    height: 2vh;
}

.received {
    position: relative;
    background-color: #f1f0f0;
    padding: 10px 20px;
    border-radius: 20.8px;
    position: absolute;

}

.emit {

    margin-bottom: 10px;
    background-color: #0084ff;
    color: white;
    border-radius: 20.8px;
    padding: 10px 20px;
    text-align: center;
    justify-content: end;
    right: 0px;
    position: absolute;
    margin-right: 2vh;
}


.messages {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;

}

.messages div {
    display: flex;
    flex-direction: column;
    height: 2vh;
    margin-bottom: 1vh;
    margin-top: 2vh;
    padding-left: 2vh;

}

.invisible {
    display: none;
}

.active {
    background-color: #a9c9e7af;
}
.active:hover {
    background-color: #a9c9e7af;
}

.natachacard h2, .natachacard h3 {
text-decoration: underline
}