*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#e7e7e7;
    font-family:Arial, Helvetica, sans-serif;
}

.phone{
    width:390px;
    height:800px;
    background:white;
    border:12px solid black;
    border-radius:45px;
    overflow:hidden;
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.notch{
    width:140px;
    height:28px;
    background:black;
    border-radius:0 0 20px 20px;
    margin:auto;
}

.instagram-header{
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-bottom:1px solid #ddd;
}

.instagram-header h2{
    font-weight:500;
}

.feed{
    height:650px;
    overflow-y:auto;
}

.post{
    border-bottom:1px solid #ececec;
    padding:25px;
}

.metrics{
    text-align:center;
    margin-bottom:20px;
}

.metrics p:first-child{
    font-size:1.4rem;
    font-weight:bold;
}

.metrics p:last-child{
    color:#777;
    margin-top:5px;
}

.image-container{
    height:320px;
    overflow:hidden;
    border-radius:12px;
    position:relative;
}

.image-container img{
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:0;
    filter:blur(15px);

    transition:
        opacity .2s ease,
        filter .2s ease;
}

.image-container:hover img{
    opacity:1;
    filter:blur(0);
}

.bottom-bar{
    position:absolute;
    bottom:0;
    width:100%;
    height:60px;
    border-top:1px solid #ddd;

    display:flex;
    justify-content:space-around;
    align-items:center;

    background:white;
    font-size:1.4rem;
}

.bottom-bar img{
    width:26px;
    height:26px;
    cursor:pointer;
}

.logo{
    height:35px;
    width:auto;
}