* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    background-color: #dbdee5;
    font-size: 14px;
}
body {
    background: url('../assets/media/bg.jpg') no-repeat center;
    background-size: cover;
    font-family: sans-serif;
    height: 100vh;
}
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}
.footer {
    position: fixed;
    width: 100%;
    bottom: 0;
}
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 16px;
    }
    .carousel-caption {
        display: none;
    }
}
