@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #121214;
    font-family: "Space Grotesk", sans-serif;
}
header{
    background-color: #17171A;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    flex-direction: column;
    padding: 70px, 0px, 70px, 0px;
}
#title-code{
    font-weight: 300;
    font-size: 40px;
    padding: 30px 0px;
    color: #e07b67;
}
#title-lab{
    color: #ffff;
}
#header-search{
    background-color:#202024;
    border:solid 2px #252529;
    border-radius: 8px;
    width: 67%;
} 
#txt-search{
    float:left;
    background-color:transparent;
    padding-left: 5px;
    font-size: 16px;
    border: none;
    width: auto;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
}
#btn-search{
    background-color: #202024;
    border:none;
    float:left;
    height:32px;
    border-radius:7px 0 0 7px;
    width:70px;
    font-weight:bold;
    padding: 10px 10px 10px 10px;
}
.cards{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0px;
    gap: 20px;
}
#card{ 
    background-color: #17171A;
    height: auto;
    width: 67%;
    border: solid 2px #E07B67;
    border-radius:  8px;
    padding: 20px;
}
.infor{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#date{
    color: #e07b67;
    font-family: "Inter", sans-serif;
    font-size: 12px;
}
#icon {
    fill: #17171A;
    stroke: #E07B67;
    stroke-width: 7;
    transition: fill 0.3s;
    cursor: pointer;
}
  
#icon.filled,
#icon:hover {
    fill: #E07B67;
}
#title-card{
    color: #ffff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    padding: 17px 0px;
    font-size: 24px;
}
#content-card{
    color: #AFABB6;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}
/*Mobile*/
@media (max-width: 700px) {
    #header-search{
        width: 80%;
        height: auto;
    }
    #txtBusca{
        font-size: 15px;
    }
    #card{
        width: 80%;
    }
}