html {
    scroll-behavior: auto;
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}
* {
    box-sizing: border-box;
}
body {
    font-family: 'Muli', sans-serif;
}

.navbar-nav {
    float:none;
    margin:0 auto;
    display: block;
    text-align: center;
}

.navbar-nav > li {
    display: inline-block;
    float:none;
}

.dropbelow {
    animation-name: down;
    animation-duration: 2s;
    position: relative;
}

.goup {
    animation-name: up;
    animation-duration: 2s;
    position: relative;
}

.goup2 {
    animation-name: up;
    animation-duration: 1.5s;
    position: relative;
}

@keyframes down {
    0% { top: -250px; }
    100% { top: 0px; }
}

@keyframes up {
    0% { top: 1000px; }
    100% { top: 0px; }
}
.overall {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.biden {
    width: 100%;
}
.buttigieg {
    width: 100%;
}
.other {
    width: 100%;
}

ul {
    padding: 0;
    width: 100%;
    display: flex;
}

ul li {
    list-style: none;
}
ul li .imageBox {
    width: 100%;
    box-sizing: content-box;
}
ul li .imageBox figure {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
ul li .imageBox figure img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
ul li .imageBox figure figcaption {
    position: absolute;
    transform: translate(0, -30%);
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: 1s;
    transform: translateY(20px);
}
/*
ul li .imageBox:hover figure figcaption {
    opacity: 1;
    transform: translateY(0);
}
*/
ul li .imageBox figure figcaption h1 {
    margin: 0;
    padding: 10px;
    font-size: 24px;
    font-weight: 500;
}
ul li .imageBox figure figcaption p {
    margin: 0;
    padding: 10px;
    font-size: 14px;
}
ul li .imageBox figure figcaption a {
    display: inline-block;
    padding: 5px 15px;
    font-size: 24px;
    background: blue;
    color: white;
    text-decoration: none;
    border-radius: 20px;
}
