@font-face 
{
    font-family: ComicReliefBold;
    src: url("../assets/fonts/ComicRelief-Bold.ttf");
}

@font-face 
{
    font-family: ComicReliefRegular;
    src: url("../assets/fonts/ComicRelief-Regular.ttf");
}

nav
{
    z-index: 1;
}

main 
{
    min-height: 100vh;
    margin-top: 80px;
}

footer
{
    background-color: rgb(33, 31, 145);
}

.blue-black-underline
{
    box-shadow: 0 2px 0 rgb(46,44,203), 0 4px 0 rgb(0, 0, 0);
}

.blue-shadow
{
    text-shadow: 1px 1px 0px rgb(46,44,203);
}

.comic-sans
{
    font-family: ComicReliefBold;
    letter-spacing: 1px;
}

.nav-link
{   
    color: black;
}

.nav-link:hover
{
    color: rgb(46,44,203); 
}

.navbar-brand
{
    height: 60px;
}

.section-title
{
    font-size: 32px;
}

.showcase-image
{
    width: 75%;
}

.carousel-image
{
    width: 19%;
}

.carousel-control-next, .carousel-control-prev 
{
    filter: invert(100%);
    z-index: inherit;
}

.gallery-image
{
    width: 250px;
    cursor: pointer;
}

.gallery-image:hover
{
    opacity: 50%;
}

.gallery-overlay
{
    z-index: 2;
    width: 100vw;
    height: 100vh;
    cursor: pointer;
}

#contact-section
{   
    height: calc(100vh - 80px);
}

#title
{
    font-size: 36px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

#form-container
{
    max-width: 800px;
}

#form-button
{
    padding: 0.9rem 2.3rem;
    background-color: rgb(46,44,203);
    border-color: #cde1f8;
    border: 1px solid transparent;
    border-radius: 5rem;
    font-size: 1.2rem;
    text-decoration: none;
    vertical-align: middle;
    transition: all 500ms ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

#form-button:focus 
{
    outline: 0;
}

#form-button:hover 
{
    background-color: rgb(33, 31, 145);
    transition: all 500ms ease;
}

@media only screen and (max-width: 768px) 
{

    .showcase-image 
    {
        width: 100%;
    }

    .gallery-image
    {
        width: 125px;
    }

}

@media only screen and (max-height: 800px) 
{

    #contact-section
    {
        height: calc(100vh + 120px);
    }

}