/* 30-12-2023 */

/* colors */
:root{
    --Yellow: #f4d04e;
    --Grey: #595959;
}

html,body{
    margin:0 ;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
*{
    box-sizing: border-box;
    text-decoration: none;
    border: 0;
}
img{
    width: 100%;
    border-radius: 1rem;
}
.bold{
    font-weight: bold;
}

/*  */

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #f4d04e, #d4ad3b);
    
}

.main{
    border: 2px solid ;
    max-width: 320px;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 10px 10px 5px #000;
    background: #fff;
    margin: 0 auto;
    
}
h1{
    font-weight: bolder;
}
button{
    background: var(--Yellow) ;
    padding: .5rem .8rem;
    border-radius: .4rem;
    font-weight: bold;
    margin-top: 1rem;
}
button:hover{
    background-color: #000;
    color: #fff;
}

article p:nth-of-type(2){
    color: var(--Grey);
}

.img_container{
    display:flex ;
    gap: .5rem;
    margin-top: 1.5rem;
    align-items: center;
}

.img_container img{
    width: 40px;
    height: 40px;
}


footer{
    width: 100%;
    display: none;
}
@media  (min-width:920px) {
    footer{
        display: block;
        position: fixed;
        bottom: 0;
    }
}


/* attribute */
.attribution{
    background-color: #fff;
    color: #000;
    text-align: center;
    font-size: 11px;
}
.attribution p{
    margin-bottom: 0;
}
.attribution a{
    text-decoration: none;
    color: hsl(228, 45%, 44%);

}
.attribution p a{
    font-size: 1rem;
}
.attribution a span{
    font-size: 1.2rem;
    color:rgb(142,68,173);
}





