body {
    min-height: 100vh;
    background-color: #222;
}

#navBar {
    background-color: black;
    box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.7); /* Fading shadow effect */
}

.navbar-brand {
    font-size: 50px;
    font-weight: bold;
    font-family: 'Segoe Print', 'Bradley Hand', Chilanka, TSCu_Comic, casual, cursive;
    line-height: 1.2em;
    color: #58575700;
    text-shadow: 
        0 0 #ffffff, 
        0 1.2em wheat;
    overflow: hidden;
    transition: .3s;
}

.navbar-brand:hover {
    text-shadow: 
        0 -2.2em #000, 
        5px 5px wheat;
    padding: 10px;
}

.nav-item {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Segoe Print', 'Bradley Hand', Chilanka, TSCu_Comic, casual, cursive;
    line-height: 1.5em;
    color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 0 wheat;
    transition: 0.3s;
    margin-right: 20px;
}

.nav-item:hover {
    box-shadow: 0 0 15px #000, 5px 5px wheat;
    border: white outset;
    border-radius: 20px;
    padding: 20px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    display: none;
    border-radius: 15px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-hover>.dropdown-toggle:active {
    pointer-events: none;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.main {
    flex: 1 0 auto;
}

#search {
    margin: 50px;
    margin-top: 150px;
    position: relative;
    text-align: center;
}

#searchBtn {
    border-color: white;
    color: white;
}

#searchBtn:hover {
    background-color: wheat;
    color: black;
    border-color: 10px black;
}

.results {
    text-align: center;
    color: red;
    margin-bottom: 200px;
}

#resKey {
    color: #222;
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    margin: 50px;
    background-color: black;
    border-radius: 20px;
    border: white outset;
    background-image: url("../pictures/bg3.jpg");
    background-size: cover;
    text-shadow: 
    2px 2px 0px white, /* Horizontal and vertical offset, blur radius, color */
    -2px -2px 0px white,
    2px -2px 0px white,
    -2px 2px 0px white;
}

.card {
    width: 300px; 
    height: 400px; 
    margin: 10px auto; 
}
.card-img-top {
    height: 150px; 
    object-fit: cover; 
}
.card-body {
    height: 250px;
    overflow: hidden; 
}


