@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Sriracha&display=swap');
.banner{
    background: url("../img/banner.jpg")no-repeat;
    background-size: cover;
    min-height: 650px;
    background-position: center center;
}
.banner-txt{
    /* max-width: 1020px; */
    margin: auto;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 650px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-cont{
    max-width: 920px;
}
.prime-txt{
    font-family: "Sriracha", cursive;
}
.second-txt{
    font-family: "Playfair Display SC", serif;
}
.card{
    transition: 0.5s ease-in-out;
}
.card img{
    min-height: 250px;
    object-fit: cover;
}
.card:hover{
    transform: scale(1.1);
}