.DemoCardContainer{
    padding-block: 100px;
    display: flex; justify-content: center; align-content: center;
}
.DemoCard{
    width: 100%;
    overflow: hidden;
    color: #333333;
}
.DemoCard video, .DemoCard img{
    width: 100%; height: 100%;
    object-fit: cover;
}
.DemoCard h1,.DemoCard h2,.DemoCard h3{
    font-size: 30px;
    font-weight: 900;
}
.DemoCard p{
    font-size: 17px;
    font-weight: 300;
}
.DemoCard a{
    font-size: 16px; font-weight: 900;
    text-decoration: none;
    color: #333333;
    display: inline-block;
}
.pill-button {
    padding: 10px 30px;
    background-color: #FFFFFF;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.DemoCard a:hover{
    background-color: #F0F0F0;
    color: #333333;
}