body {

    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin: 0;

}
.Place-For-Card {

    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:rgb(204, 204, 204);

}
.Body-Of-Card {

    width: 50%;
    height: 75%;
    background-color: white;
    border: 1px solid;
    border-color: white;
    border-radius: 30px;
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.Image-Product {

    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}
img {

    width: 30%;

}
.Place-Heading {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
    width: 100%;

}
.Heading {

    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;

}
.Place-Description {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 5%;
    width: 100%;

}
.Description {

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    color: grey;

}
.Place-For-Price {

    width: 20%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

}
.Place-Button {

    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;

}
button {

    width: 20%;
    height: 35%;
    background-color: orange;
    border: 1px solid;
    border-radius: 5px;
    border-color: orange;
    color: white;
    transition: all 0.2s;
    cursor: pointer;

}
button:hover {

    background-color: white;
    color: orange;

}
@media (max-width: 768px) {

    button{

        width: 30%;
        height: 40%;

    }
    .Body-Of-Card {

        width: 100%;
        height: 100%;

    }
}