body{
    background-image: url('../image/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
}
.rowone {
    width: 100%;
    height: 100px;
    text-align: center;
}
h3{
    text-shadow: 
        0 0 5px rgba(7, 71, 209, 0.884),
        0 0 10px rgba(7, 71, 209, 0.884),
        0 0 20px rgba(7, 71, 209, 0.884),
        0 0 40px rgba(7, 71, 209, 0.884);
    font-weight: bold;
}

.card {
    background-color: rgba(0,0,0,0.7) !important;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 10px;
    margin: 30px;
    text-align: center;
    transition: all 0.3s ease;
}


.navbar {
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.navbar a {
    font-weight: bold;
    color: whitesmoke;
    text-decoration: none;
}


.navbar ul li a {
    margin-left: 10px;
}

.navbar ul li a:hover {
    background-color: rgba(43, 110, 255, 0.884);
    border-radius: 6px;
    color: whitesmoke !important;
    text-shadow: 2px 2px 5px rgba(5, 37, 105, 0.884),
}
footer h5{
    text-shadow: 
        0 0 5px rgba(7, 71, 209, 0.884),
        0 0 10px rgba(7, 71, 209, 0.884),
        0 0 20px rgba(7, 71, 209, 0.884),
        0 0 40px rgba(7, 71, 209, 0.884);
    font-weight: bold;
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown .submenu {
    display: none;
    position: absolute;
    background-color: #000;
    padding: 10px;
    list-style: none;
    top: 100%;
    left: 0;
    min-width: 180px;
    z-index: 999;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.custom-dropdown:hover .submenu {
    display: block;
}

.custom-dropdown .submenu li {
    margin-bottom: 5px;
}

.custom-dropdown .submenu li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
}

.custom-dropdown .submenu li a:hover {
    background-color: #007bff;
}