:root {
    --brand-color: #ff433a;

    --brand-gray: #222222;
    --brand-gray-transparent: #22222260;
}

.custom-body {
    background-color: var(--brand-gray) !important;
}

.custom-navbar {
    background-color: black !important;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.8));
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
    color: white !important;
}


.doodlefish-home {
    background-image: url("../images/PitchBG1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 750px;
}

#doodlefish-welcome p {
    font-size: 24px;
    font-weight: bold;

    text-align: left;
    width: fit-content;
    padding: 8px 16px;
    margin: 0;

    color: white;
    background-color: var(--brand-color);
    border-radius: 8px;
}

#doodlefish-welcome p.doodlefish-welcome-company-name {
    font-size: 64px;
    font-weight: bold;
    line-height: 1;

    text-align: left;
    padding: 8px;
    margin: 0;

    color: white;
    background-color: transparent;
}

#doodlefish-game-link {
    background-color: var(--brand-gray-transparent);
    backdrop-filter: blur(10px);
}

#doodlefish-game-link p {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;;

    text-align: center;
    padding: 8px 16px;
    margin: 0;

    color: white;
}

#doodlefish-game-link p.doodlefish-game-name {
    font-size: 64px;
    font-weight: bold;

    text-align: center;
    padding: 8px 16px;
    margin: 0;

    color: var(--brand-color);
}

#doodlefish-game-link a {
    font-size: 32px;
    font-weight: bold;

    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 8px 16px;
    margin-top: 16px;

    color: white;
    border: 2px solid white;

    transition: background-color 0.3s ease;
}

#doodlefish-game-link a:hover {
    background-color: #ffffff90;
}

#doodlefish-connect {
    background-color: var(--brand-color);

    position: fixed;
    bottom: 0;
    width: 100%;
}

#doodlefish-connect p {
    color: white;
    font-weight: bold;
}

#doodlefish-connect a {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7449%) hue-rotate(308deg) brightness(101%) contrast(93%);
    ;
    text-decoration: none;

    /* add transition? */
}

#doodlefish-connect a:hover {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(0%) hue-rotate(21deg) brightness(97%) contrast(103%);
}