@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}


.placement-main {
    width: 100%;
    height: 100vh;
    /* background-color: ; */
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    gap: 10px;
}

.placement-back-btn{
    width: 95%;
    /* background-color: yellowgreen; */
    padding: 20px 10px;
}
.placement-back-btn button{
    width: 120px;
    height: 35px;
    border: none;
    background-color: #A75519;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

.placement-head {
    width: 100%;
    height: 100px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #A75519;
    font-size: 30px;
}

.placement-main img {
    width: 100%;
    /* height: 100%; */
}

.placement-grid {
    width: 90%;
    height: auto;
    /* background-color: yellowgreen; */
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.placement-card {
    width: 200px;
    height: 300px;
    background: url(placement-img/PLacement-bk.png);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.placement-img{
    width: 100%;
    height: auto;
    /* background-color: #A75519; */
}
.placement-card h3{
    color: #c4a189;
    font-size: 16px;
    text-align: center;
}
.placement-card p{
    color: white;
    font-size: 10px;
}
.placement-card span{
    color: white;
    font-size: 10px;
}