.jumbotron-text-none{
    background-color: rgba(255,255,255,0.75);
    color: black;
    width: 60%;
    padding: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.bulletin_event{
    position: relative;
    width: 80%;
    color: black;
    padding: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 10px;
    margin-left: 10px;
    border: 5px solid rgb(189, 62, 62);
    border-bottom: none;
    border-top: none;
    border-right: none;
    
}
.club{
    position: relative;
    width: 50%;
    margin: 10px;
    border-radius: 8px;
    padding:15px;
    border: 1px solid #e4d9d9;
    box-shadow: 5px 12px 18px #888888;
}
.club img{
    position: relative;
    width: 100%;
    max-height: 800px;
    border-radius: 10px;
}
.join-club{
    padding: 9px;
    padding-right: 25px;
    padding-left: 25px;
    top: 90%;
}
.clubs_container{
    position: relative;
    display: flex;
}
.clubs h2{
    text-align: center;
}
.chatroom{
    display: flex;
    transition: all .5s ease;
    background-color: rgba(255,255,255,.4);
    width: 96%;
    min-width: 200px;
    padding: 20px;
    padding-left: 5%;
    border: 1px solid #e4d9d9;
    margin-bottom: 20px;
    box-shadow: 3px 7px 10px #ece9e9;
}
.newest_message{
    font-weight: 300;
}
.chatroom_clicked{
    top: 0%;
    position: fixed;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: white;
    overflow-y: scroll;
}
.chatroom_clicked .newest_message{
    display: none;
}
@media screen and (max-width:700px){
    .jumbotron-text-none{
        width:100vw;
        margin-left: 0px;
    }
}
@media screen and (max-width:575px){
    .bulletin_event{
        width:100%;
        margin-left: auto;
        margin-right: auto;
    }
}