/* CUSTOM CSS */
/* ------------------------------------------------- */
body {
    padding-top: 5rem;
}

header, .header-shadow {
    text-shadow: 2px 2px 5px black;
    box-shadow: 5px 5px 20px gray;
}

.header-image {
    background-image: url('../img/head2.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

header h1 {
    font-size: 5rem;
}

header h2 {
    font-size: 3rem;
}

header p {
    font-size: 1.5rem;
}

.gradient-aqua {
    background: linear-gradient(141deg, #9fb8ad 0%, #1fc8db 51%, #2cb5e8 75%) !important;
}

.gradient-peach {
    background: linear-gradient(40deg,#ffd86f,#fc6262) !important;
}

.navbar-brand {
    font-family: 'Lobster', cursive;
    font-size: 2rem;
}

.nav-item {
    font-size: 1.0rem;
    font-weight: 600;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: white !important;
    text-transform: uppercase;
    text-shadow: none;
}

.my-menu {
    display: block;
    position: relative;
    top: 0px;
    left: 0px;
    box-shadow: 5px 5px 15px gray;
    transition: all 0.2s ease-in-out;
}

.my-menu:hover {
    position: relative;
    top: 5px;
    left: 5px;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
}

.box {
    position: relative;
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0px 0px 5px gray;
    /* mix-blend-mode: multiply; */
    mix-blend-mode: normal;
    background-color: white;
}

.box:hover {
    transform: scale(1.1, 1.1);
    box-shadow: 15px 15px 15px gray;
    z-index: 50;
}

/*
.box::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
  
.box:hover::after {
    opacity: 1;
}
*/

/* ------------------------------------------------- */

@media (max-width: 760px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    header h2 {
        font-size: 2rem;
    }

    header p {
        font-size: 1.0rem;
    }

    .lead {
        font-size: 1.0rem;
    }

}
