@font-face {
    font-family: 'Figtree';

    src: url('fonts/Figtree') format('truetype');
}

body {
    font-family: 'Figtree', sans-serif;
}

body {
    background-color: #F4D04E;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.container {
    background-color: white;
    width: 384px;
    height: 522px;
    text-align: center;
    padding: 24px;
    border-radius: 17px;
    border: 2px solid black;
    box-shadow: 10px 10px;

}

@media (max-width:767px) {
    .container {
        width: 327px;
        height: 501px;
        margin: 24px;
    }
}

.container .img {
    width: 100%;
    border-radius: 15px;
}

.container .content {
    text-align: left;
    padding: 15px 0;
}

.container .box {
    display: flex;
    background-color: #F4D04E;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: bold;
}

.container .content h1 {
    font-size: 27px;
}

.container .content h1:hover {
    color: #F4D04E;
}

.container .content .para {
    font-size: 17px;
    color: #777;
}

.container .content .info {
    display: flex;
}

.container .content .info img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.container .content .info h3 {
    position: relative;
    top: -10px;
    font-size: 18px;
    font-weight: bold;
}