.navbar{
    background-color: rgb(30, 30, 30);
    z-index: 1;
}
.navbar ul li a{
    color: white;
}
.navbar ul li .active{
    border-bottom: 3px solid white;
}
.navbar ul li a:hover{
    border-bottom: 3px solid white;
    transition: 0.1s ease-in;
}
body{
    background-color: #041E39;
}

.container{
    display: flex;
    justify-content: center;
    align-self: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.card-container{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    padding-top: 85px;
    width: 100%;
    height: 100vh;
    flex-wrap: wrap;
    padding-bottom: 2%;
    background: url(../assets/contact.svg) no-repeat;
    background-position: center;
    background-size: cover;
}
.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40%;
    width: 14%;
    min-width: 263px;
    border: 3px solid black;
    box-shadow: 3px 3px rgb(0, 0, 0, 0.75);
    margin: 1%;
    background-color: rgb(245, 245, 245, 0.75);
    border-radius: 25px;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
.image{
    /* margin-top: 7%; */
    border-radius: 25%;
    height: 25%;
    width: 25%;
}
.title{
    /* margin-top: 5%; */
    font-size: 36px;
    font-weight: 700;
}
.tag{
    margin: 5% 0;
    font-size: 20px;
    font-weight: 500;
}