body {
    background: rgba(0,0,0,0.9);
    /* background: rgb(36, 92, 247); */
    margin: 0;
    color: #ffffff;
    font-family: 'Helvetica', Tahoma, Geneva, Verdana, sans-serif;
    /* font-weight: bold; */
}

.showcase::after {
    content: '';
    /* height: 100vh; */
    height: 50vh;
    width: 100%;
    background-image: url(/images/pitchingReportLandingBackground.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    /* filter: blur(10px); */
    /* -webkit-filter: blur(10px);
    transition: all 1000ms; */
}

.showcase:hover::after {
    filter: blur(0px);
    -webkit-filter: blur(0px);
}

/* .showcase:hover .content {
    filter: blur(2px);
    -webkit-filter: blur(2px);
} */

.content {
    position: absolute;
    z-index: 1;
    top: 10%;
    left: 50%;
    margin-top: 105;
    margin-left: -180px;
    width: 350px;
    height: 350px;
    text-align: center;
    transition: all 1000ms;
    color: rgb(21, 126, 251)
}

.content .logo {
    /* height: 180px;
    width: 180px; */
    height: 100px;
    width: 100px;
}

.content .title {
    font-size: 3rem;
    margin-top: 1rem;
}

.content .text {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.7;
    margin-top: 12rem;
}

.container {
    max-width: 960px;
    margin: auto;
    overflow: hidden;
    padding: 4rem 1rem;
}

.container .logo {
    height: 180px;
    width: 180px;
    color: rgb(21, 126, 251);
}

.grid-3 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.center {
    text-align: center;
    margin: auto;
}

.bg-light {
    background: #f4f4f4;
    color: #333;
}

.bg-dark {
    /* background: #333; */
    background: rgb(21, 126, 251);
    color: #f4f4f4;
}

footer {
    /* flex-shrink: 0; */
    padding: 6.2rem;
    /* padding: 20px */
}

footer p {
    margin: 0;
}

.light-gray {
    color: gray;
}

/* Small Screens */
@media(max-width: 560px) {
    .showcase::after {
    height: 50vh;
    }

    .content {
        top: 5%;
        margin-top: 5px;
    }

    .content .logo {
        height: 140px;
        width: 140px;
    }

    /* .content .text {
        display: none;
    } */

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        text-align: center;
        margin: auto;
    }

    .services .bottom-border{
        /* border-bottom: #333 dashed 1px; */
        border-bottom: #fff solid 1px;
        padding: 1.2rem 1rem;
    }

    .content .text {
        margin-top: .05rem;
    }

}

/* Landscape */
@media(max-height: 500px) {
    .content .title, .content .text {
        display: none;
    }

    /* .content {
        top: 0;
    } */
}


