:root{
    --Yellow: hsl(47, 88%, 63%);

    --White: hsl(0, 0%, 100%);
    
    --Gray500: hsl(0, 0%, 42%);
    --Gray950: hsl(0, 0%, 7%);
    --font: 16px;
}

html, body{
    
    width:100%;
    height:100vh;
    background:var(--Yellow);
    font-family:"Figtree", sans-serif;

}
body{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    overflow:hidden;
}

    .main{
        background: var(--White);

        padding:30px;
        border-radius: 10px;
        width: 350px;
        height:450px;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgb(38, 37, 37);
    }
    .attribution{
        position:absolute;
        bottom:0%;
        left:50%;
        transform: translateX(-50%);
    }
    .con{
        margin: 0 auto;
        width:336px;

    }
 .img{
        display: block;
      
        border-radius: 5px;}
 .head{
        color: var(--Gray950);
        
       
        padding:5px;
        width:80px;
        text-align: center;


        margin-top:10px;
        font-size: medium;
        background-color: var(--Yellow);

    }

    .date{
        color:var(--Gray500);
        font-size:small;
        margin:10px 0 10px;
    }
    .title{
        color:black;
        font-weight: 700;
        font-size: large;
    }
    .text{
        font-size: 11px;
        color:var(--Gray500);
        margin:10px 0 10px;
    }
    .chr{
        margin-top:10px;
        display:flex;
        flex-direction: row;
        align-items: center;
    }
    .logo, .cha{
        display: inline;
        font-weight: bold;
    }
    .cha{
        margin-left: 5px;
    }

@media screen and (max-width: 375px) {

    .main{
        width:350px;
    }
}

  

