95b5fd6d9e
Co-authored-by: Angie Jones <jones.angie@gmail.com>
37 lines
431 B
CSS
37 lines
431 B
CSS
.features {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 2rem 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.featureSvg {
|
|
height: 200px;
|
|
width: 200px;
|
|
}
|
|
|
|
.featureIcon {
|
|
height: 32px;
|
|
width: 32px;
|
|
}
|
|
|
|
.videoContainer {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
margin-bottom: 100px;
|
|
position: relative;
|
|
}
|
|
|
|
.video {
|
|
width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
outline: none;
|
|
}
|
|
|
|
.video + .video {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|