@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");

body {
    background-color: #f1f1f1;
}

.container-fluid {
	max-width: 1600px;
}

.demo-box {
  padding: 20px 0 50px 0; 
  text-align: center;
}

.demo-box img {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
            transition: all 400ms ease-in-out;
}

.demo-box img:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);    
    transform: translateY(-10px);
}

.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.bg-dark {
    background-color: #424242 !important;
}