/* Universal Selector */
* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

/* Body */
html,
body {
    width: 100%;
    height: 100%;
}

body {
    background:#f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}


.content{
    padding:15px;
}

.content h3{
    margin:0 0 6px;
}

.content p{
    margin:0;
    font-size:14px;
    color:#555;
}

/* Insta-Card */
#card{
    max-width: 360px;
    width: 100%;
    background:#fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    overflow: hidden;
    position: relative;
}

/* Insta-Card > IMG */
#card > img{
    width: 100%;
    display: block;
    object-position: center;

} 

#card > i {
    color: #fff;
    /* color: red; */
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 75px;
    transform: translate(-50%, -50%)scale(0);
    opacity: 0;
    transition: transform ease 0.3s;
}

.footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 15px;
    border-top:1px solid #eee;
    font-size:14px;
}

/* Like button */
#likeBtn{
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
}

#likeBtn i{
    color:#999;
     color: #fff; /* already white */
    font-size:18px;
    transition:.3s;
}



/* Credit */
.credit{
    text-align:center;
    padding:10px;
    font-size:13px;
    color:#666;
    font-weight: 600;
}

.credit #made-by:hover{
    color:rgb(12, 12, 12);
    
}

.credit a{
    color:#000;
    text-decoration:none;
    font-weight:bold;
}
.credit a:hover{
    color: rgb(32, 192, 32);
    
    text-decoration:underline;
}

.credit #author:hover{
    color:rgb(39, 36, 209);
    
}   