* {
    padding: 0;
    margin: 0;
  }

:root{
    --first-color: #fff;
    --second-color: #ffbe0b;
    --red-color: #ba181b;
    --green-color: #007200;
    --orange-color: orange;
    --background-color:#f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    margin-top: 10px;
    margin-left: 2px;
    margin-right: 3px;
}

h1 {
    color: var(--green-color);
}

h2 {
    color: rgb(5,10,20)
}

section.header .header-thank {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

section.header .header-thank img {
    height: 140px;
    width: 140px;
}

section.header .header-thank  .thanks{
    margin-top: 10px;
}

section.content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
   justify-content: center;
}

section.content .card {
    display: flex;
  
    min-width: 160px;
    margin: 5px 10px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 5px;
    height: 50px;
    width: 170px;
    border: 1px solid lightgray;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.35) 1.95px 1.95px 2.6px;
    transition: 1.5s;
    cursor: pointer;
}

.no-user-select-text {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.content .card:hover {
    background: var(--orange-color);
}



section.content .card .name {
    font-size: 16px;
}

section.content .card .name .highlight {
    color: var(--green-color);
    font-weight: bold;
}


section.content .card .image {
    height: 46px;
    width: 46px;
}

