img {
    width: 100%;
}

.banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1%;
    /* transition: all 0.5s ease-in-out; */
}

.imageContainer-for-Header {

    width:100%
}

.logInState {
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.5s ease-in-out;
   
}

.logInState div {
    text-align: center;
    background-color: rgb(81, 108, 155);
    border-radius: 20px;
    margin: 1%;
    font-size: 12px;
    
    transition: all 0.5s ease-in-out;
}

.logInState div:active {

    transform: translateY(5px);
    
    transition: all 0.5s ease-in-out;
}

@media (width > 500px) {

    .banner {

        grid-template-columns: 8fr 2fr;
    }

    .logInState {

        align-items: center;

        text-align: center;
    }

    .logInState div {

        width: 100%;
        
    }

}

.displayUsername {

    font-size: larger;


}
.login-box:hover {

    color: rgb(75, 133, 234);
    background-color: white;
    transition: all 0.5s ease;
    box-shadow: 0 0 5px rgb(137, 137, 201);

}

.signup-box:hover {
    
    color: rgb(75, 133, 234);
    background-color: white;
    transition: all 0.5s ease;
    box-shadow: 0 0 5px rgb(137, 137, 201);
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: black;
    background-position: center;
}

.posts {
    
    display: flex;
    flex-direction: column;
    
}

.posts div {

    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.6s ease-in-out;
}

.posts div::after {
    content: "";
    height: 1px;
    bottom: 0;
    position: absolute;
    min-width: 100%;
    background: linear-gradient(to right, transparent 0%, rgb(128, 104, 172) 30%, rgb(128, 104, 172), transparent 100%);
}

.news {
   
    color: white;
    background-color: black;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.6s ease ;
   
}

.news:hover {
    background: linear-gradient(to bottom, blue 0%, rgb(136, 136, 221) 51%, blue 100% );
    color: black;
    border: 1px solid rgba(128, 104, 172, 0.6);
    box-shadow: 0 0 5px antiquewhite;
    transition: all 0.6s ease ;
    cursor: pointer;
}

.opportunities {
    
    color: white;
    background-color: black;
    border-radius: 15px;
    text-align: center;
    min-width: 30%;
    text-decoration: none;
   
}

.opportunities:hover {
    background: linear-gradient(to bottom, blue 0%, rgb(136, 136, 221) 51%, blue 100% );
    color: black;
    transition: all 0.3s ease ;
    box-shadow: 0px 0 10px antiquewhite;
}


.jobs {
    
    color: white;
    background-color: black;
    border-radius: 15px;
    text-align: center;
}



.soon {
    opacity: 0.5;
}

.post-like-query {
    display: none;
}