body {
    background-color: #100e17 !important;
}

.bg-display {
    background-color: rgba(3, 29, 51, 1) 0%, rgba(var(--tmdbDarkBlue), 1) 70%);
}

.bg-boh {
    background: #9796f0;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #fbc7d4, #9796f0);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #fbc7d4, #9796f0);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.h-80vh {
    height: 80vh;
}

.bg-boston {
    background: url('https://images.unsplash.com/photo-1558280552-ad4240124ca5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
}

@media (max-width: 768px) {
    ol {
        display: flex;
        padding-left: 0 !important;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 100% !important;
    }
}

.social-links {
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin: auto;
}

.pr-3,
.px-3 {
    padding-right: 0rem!important;
}

select {
    word-wrap: normal;
    height: 2rem;
}

footer {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column !important;
    background: #262626;
}

ol {
    display: flex;
    padding-bottom: 0 !important;
}

ol li {
    position: relative;
    display: block;
    color: #666;
    font-size: 30px;
    height: 60px;
    width: 60px;
    background: #171515;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 15px;
    cursor: pointer;
    transition: .5s;
}

.ol li:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: inherit;
    width: inherit;
    /* background: #d35400; */
    border-radius: 30%;
    transform: scale(.9);
    z-index: -1;
    transition: .5s;
}

ol li:nth-child(1):before {
    background: #4267B2;
}

ol li:nth-child(2):before {
    background: #1DA1F2;
}

ol li:nth-child(3):before {
    background: #E1306C;
}

ol li:nth-child(4):before {
    background: #2867B2;
}

ol li:hover:before {
    filter: blur(3px);
    transform: scale(1.2);
    /* box-shadow: 0 0 15px #d35400; */
}

ol li:nth-child(1):hover:before {
    box-shadow: 0 0 15px #4267B2;
}

ol li:nth-child(2):hover:before {
    box-shadow: 0 0 15px #1DA1F2;
}

ol li:nth-child(3):hover:before {
    box-shadow: 0 0 15px #E1306C;
}

ol li:nth-child(4):hover:before {
    box-shadow: 0 0 15px #2867B2;
}

ol li:nth-child(1):hover {
    color: #456cba;
    box-shadow: 0 0 15px #4267B2;
    text-shadow: 0 0 15px #4267B2;
}

ol li:nth-child(2):hover {
    color: #26a4f2;
    box-shadow: 0 0 15px #1DA1F2;
    text-shadow: 0 0 15px #1DA1F2;
}

ol li:nth-child(3):hover {
    color: #e23670;
    box-shadow: 0 0 15px #E1306C;
    text-shadow: 0 0 15px #E1306C;
}

ol li:nth-child(4):hover {
    color: #2a6cbb;
    box-shadow: 0 0 15px #2867B2;
    text-shadow: 0 0 15px #2867B2;
}

dl,
ol,
ul {
    margin-top: 1;
    margin-bottom: 0;
}

.container {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}