/* Main Page */
#carousel .carousel,
#carousel .carousel-inner,
#carousel .carousel-item {
    min-height: 100vh;
}

.carousel-caption h1 {
    font-size: 82px;
    letter-spacing: 2px;
    text-transform: capitalize;
}

.carousel-caption h2 {
    font-size: 65px;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.carousel-caption h2 span {
    font-weight: 700;
}

#carousel #carousel-item-one {
    background: linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .60)), url("../assets/Website_Images/little-dings-restaraunt.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#carousel #carousel-item-two {
    background: linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .60)), url("../assets/Website_Images/st-patrick-green-beer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#carousel #carousel-item-three {
    background: linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .60)), url("../assets/Website_Images/pizza4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.fancy-font {
    font-family: "DancingScript", cursive;
    white-space: nowrap;
    animation: slideDown 1.5s 1;
}

.regular-font {
    text-transform: uppercase;
    white-space: nowrap;
    animation: grow 1.5s 1;
}

.btn {
    text-transform: uppercase;
    border-radius: 0;
}

.btn:focus,
.btn:active:focus {
    outline: none;
    box-shadow: none;
}

#carousel .carousel-caption {
    top: 55%;
}

#carousel .carousel-caption .btn {
    color: white;
    border-color: white;
    white-space: nowrap;
    animation: slideUp 1.5s 1;
}

#carousel .carousel-caption .btn:hover,
#carousel .carousel-caption .btn:active,
#carousel .carousel-caption .btn:focus {
    color: white;
    background-color: #ca3d26;
}

.back-to-top {
    background-color: #ca3d26;
    z-index: 10;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: none;
}

.back-to-top:hover,
.back-to-top:active,
.back-to-top:focus {
    background-color: black;
    border: solid 1px white;
}

@media only screen and (max-width: 992px) {
    .carousel-caption h1 {
        font-size: 62px;
    }

    .carousel-caption h2 {
        font-size: 45px;
    }
}

@media only screen and (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 52px;
    }

    .carousel-caption h2 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 576px) {
    #carousel .carousel-caption {
        top: 60%;
    }

    .carousel-caption h1 {
        font-size: 42px;
    }

    .carousel-caption h2 {
        font-size: 20px;
    }
}

/* Animations */
@keyframes slideUp {
    0% {
        transform: translateY(80px);
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-80px);
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes grow {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotateX(0deg);
        opacity: 1;
    }

    to {
        transform: rotateX(-90deg);
        opacity: 0;
    }
}