html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

:root {
    --jumbotron-padding-y: 3rem;
}

.jumbotron {
    padding-top: var(--jumbotron-padding-y);
    padding-bottom: var(--jumbotron-padding-y);
    margin-bottom: 0;
    /*background-image: url('img/seagull.JPG');
    background-position: center center;
    background-size: cover;*/
}

@media (min-width: 768px) {
    .jumbotron {
        padding-top: calc(var(--jumbotron-padding-y) * 2);
        padding-bottom: calc(var(--jumbotron-padding-y) * 2);
    }
}

.jumbotron p:last-child {
    margin-bottom: 0;
}

.jumbotron-heading {
    font-weight: 500;
}

.jumbotron .container {
    max-width: 65rem;
    background-position: left left;
    background: rgba(0,0,0,0.6);
    padding: 1rem;
    color: white;
    border-radius:5px;
}

.jumbotron p {
    color: white;
    text-shadow: 0 0 0px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    font-weight:200;
}

footer {
    position: relative;
    margin-top: -150px; /* negative value of footer height */
    clear: both;
    padding-top: 20px;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

    footer p {
        margin-bottom: .25rem;
    }

.bottom-div {
    position: absolute;
    bottom: 0;
    padding-bottom: 200px;
}
.question {
    display: inline-block;
    background-color: burlywood;
    border-radius: 5px;
    color: black;
    padding: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.answer {
    color: black;
    padding: 8px;
    margin-right: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.spinner {
    border: 4px solid rgba(200, 0, 0, 0.1);
    border-top-color: #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s infinite linear;
    padding: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.content {
    height: calc(100% - 250px);
}
/*Custom */
/*.navbar-brand img {
    width: 80px;
}
@media screen and (min-width: 992px){
    .navbar .container-fluid {
        flex-direction: column;
    }
    .navbar-brand img {
        width: 310px;
    }
}*/
