.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #0b3d5f;
    color: #fff;
}

.nav-links a {
    color: #fff;
}

.nav-links {
    list-style-type: none;
}

.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}

.menu li:hover {
    background-color: #427496;
    border-radius: 5px;
    transition: 0.3s ease;
}

.menu li {
    padding: 5px 14px;
}

.subcategory {
    position: relative;
}

.dropdown {
    background-color: rgb(76, 128, 163);
    padding: 1em 0;
    position: absolute;
    display: none;
    border-radius: 8px;
    top: 35px;
}

.dropdown li+li {
    margin-top: 10px;
}

.dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: left;
}

.dropdown li:hover {
    background-color: #5083a5;
}

.subcategory:hover .dropdown {
    display: block;
}

.menu li a {
    text-decoration: none;
}

.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: 3px;
    margin-left: 2px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

body {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

h3 {
    color: rgb(255, 255, 255);
    text-align: center;
    font-style: italic;
    
     
}

.container {
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.container span {
    text-transform: uppercase;
    display: block;
}

.text1 {
    color: rgb(12, 58, 70);
    font-size: 45px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 10px;
    position: relative;
    animation: text 4s 1;

}

.text2 {
    font-size: 20px;
    color: #0c2636;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

@keyframes text {
    0%{
        color: black;
        margin-bottom: -40px;
    }
    30%{
        letter-spacing: 25px;
        margin-bottom: -40px;
    }
    85%{
        letter-spacing: 8px;
        margin-bottom: -40px;
    }
    
}



