body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #FFCD4B;
}

.page {
    height: 180%;
    background-color: #FFCD4B;
    background: linear-gradient(to bottom, #FFCD4B, #F0E48E 60%);
}

.static-page {
    padding: 20px;
    font-size: 18px;
    font-family: Arial, sans-serif;
}

.circles{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    z-index: -100;
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

#results {
    display: none;
}

#previous {
    display: none;
}

.home-title {
    font-size: 60px;
    text-transform: lowercase;

    @media screen and (min-width: 700px) {
        font-size: 68px;
    }
}

.description {
    font-size: 18px;
    text-transform: lowercase;
    display: flex;
    padding-left: 24px;
    padding-right: 24px;

    @media screen and (min-width: 380px) {
        font-size: 24px;
    }
}

.cta-bottom {
    bottom: 80px;
    padding: 8px 24px 8px 24px;
}

.navbar {
    background-color: #99D9EA;
    border-top: 2px solid #181A18;
    padding: 0;
    bottom: -1px;
}

.navbar-brand {
    font-size: 18px;
}

.navbar .col {
    padding: 0;
    margin: 0;
}

.navbar img {
    margin-right: 10px;
    margin-left: 10px;
}

.border-left{
    border-left: 2px solid #181A18;
}

#copyright {
    font-size: 13px;
    background-color: #cecece;
    border-top: 2px solid #181A18;
}

.circle {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 34px;
    border-radius: 50%;
    background-color: #FFD9E7;
    color: #181A18;
    font-size: 16px;
    text-align: center;
    border-style: solid;
    justify-content: center;
}

.socials-container {
    padding-top: 35px;
    text-align: center;

    a {
        text-decoration: none;
    }
}

.socials {
    width: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

#question-title, #results h2 {
    font-size: 28px;
    min-height: 140px;
}

@media screen and (min-width: 768px) {
    #question-title .text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 768px;
    }

    .btn-group-toggle {
        max-width: 768px;
    }
}

.btn {
    background-color:  #FF4B91;
    border: none;
    color: ghostwhite;
    font-size: 28px;
    z-index: 100;
}

.btn:hover {
    background-color: #FF4B91;
    color: ghostwhite;
    z-index: 100;
}

#question-options .btn:active {
    background-color: #FF4B91;
    opacity: 0.6;
    color: ghostwhite;
    z-index: 100;
}

@media screen and (min-width: 768px) {
    .btn:hover {
        background-color: #FF6767;
    }
}

.multi-option {
    position: relative;
    display: block;
    text-align: left;
}

#question-options .btn {
    margin-top: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.6s ease-out;
}

#question-options .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    border-radius: 5px;
    z-index: -1;
}

#food-options {
    font-size: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.results-list-item {
    background-color: #99D9EA;
    background: linear-gradient(to right, #99D9EA, #F0E48E, #FFCD4B);
    color: #181A18;
    padding: 5px 20px;
    display: flex;
    margin: 10px 0 10px 0;
    min-height: 60px;
    align-items: center;
    text-transform: lowercase;
}

.no-results {
    padding: 16px;
}

.footer {
    background-color: rgba(240, 228, 142, 0.7);
}

.footer .btn {
    min-width: 110px;
    font-size: 20px;
}

#bottom .btn {
    font-size: 20px;;
}

#see-results {
    background-color: #DEB3AD;
    color: #181A18;
    font-size: 24px;
    border-radius: 20px;
    border-style: solid;
    margin-top: 100px;
}

.check-content{
    margin-left: 5px;
}

.btn-group-toggle {
    padding: 0;
}

h1 {
     color: #181A18;
}

.or {
    font-size: 24px;
    text-align: center;
    text-transform: lowercase;
}

.progress-bar {
    background-color: #00B5FF;
}

body {
    font-family: 'Comfortaa', sans-serif;
}

.ice-cream {
    width: 45px;
    padding-top: 4px;
}

.get-results-btn {
    font-size: 24px;
}

.feedback {
    display: none;
}

.feedback img {
    height: 30px;
    margin: 0 15px;
    z-index: 100;

    &:hover {
        cursor: pointer;
    }
}

.feedback h3 {
    padding-top: 12px;
    font-size: 20px;
}

.feedback-thanks {
    display: none;
    font-size: 20px;
}

.legal-page {
    font-family: Arial, sans-serif;
    padding: 20px;
    padding-bottom: 60px;
    background-color: white;

    p, li {
        font-size: 14px;
    }

    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 20px;
    }

    .outline {
        display: block;
    }
}



@keyframes moveVertical {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(200px);
    }
    100% {
        transform: translateY(0);
    }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
