* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Figtree", serif;
}    

body {
    background: #f4d04e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}    

.container {
    width: 410px;
    height: 570px;
    background: #ffffff;
    border-radius: 30px;
    position: relative;
    border: 1px solid #121212;
}

.dv-1 {
    background: #121212;
    width: 393px;
    height: 552px;
    position: absolute;
    z-index: -1;
    border-radius: 5%;
}

.container div {
    margin: 25px;
}

.h-1 img {

    border-radius: 14px;
    width: 100%;
}    

.h-1 span {
    margin-top: 20px;
    display: inline-block;
    font-weight: 800;
    background: #f4d04e;
    color: #121212;
    width: 28%;
    padding: 7px;
    border-radius: 4px;
    text-align: center;
}    

.h-1 p {
    margin-top: 20px;
    font-weight: 600;
    color: #121212;
}    

.h-1 h2 {
    font-weight: 800;
    margin-top: 20px;
}    

.h-1 .p-2 {
    color: #6b6b6b;
    font-weight: 500;
    line-height: 24px;
}    

.h-1 .img-1 {
    margin-top: 20px;
    width: 40px;
}    

.h-1 .p-3 {
    position: relative;
    top: -55px;
    left: 54px;
    color: #121212;
    font-weight: 800;
}    

h2:hover {
    color: #f4d04e;
    transition: ease .3s;
    cursor: pointer;
}    

@media screen and (max-width: 375px) {

    .container {
        width: 350px;
    }

    .dv-1 {
        width: 330px;
        height: 549px;
    }

}

