* {
    margin: 0;
    padding: 0;
    font-family: "Figtree", serif;
    box-sizing: border-box;
}
body {
    background-color: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100vh; 
}
.component {
    background-color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid black;
    box-shadow: 7px 7px;
    border-radius: 17px;
    padding: 16px;
    width: 300px;
}
.qr-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.component-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 2px;
    padding-left: 2px;
}
.component-text button{
    background-color: hsl(47, 88%, 63%);
    border: none;
    border-radius: 4px;
    width: 65px;
    height: 25px;
    font-size: 11px;
    font-weight: 800;  
    cursor: pointer;
}
.component-text button:hover{
    background-color: hsl(0, 0%, 7%);
    color: hsl(47, 88%, 63%);
    transition: 0.4s;
}
.component-text h6{
    color: hsl(0, 0%, 7%);
    font-weight: 600;
}
.component-text h1{
    font-size: 18px;
    color: hsl(0, 0%, 7%);
    font-weight: 800;
}
.component-text h1:hover{
    color: hsl(47, 88%, 63%);
    transition: 0.3s;
    cursor: pointer;
}
.component-text p{
    font-size: 12px;
    color: hsl(0, 0%, 42%);
    line-height: 18px;
    font-weight: 500;
}
.component-text h5{
    font-size: 12px;
    font-weight: 800;
}
.author{
    display: flex;
    align-items: center;
    gap: 8px;
}
.author img{
    width: 30px;
    height: 30px;
}