@charset "utf-8";

.wrap {
     overflow: hidden;
 }
 .brains-logo{
     width: 300px;
 }
.room-list{
    width: 100%;
    margin: 2%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.myrooms-list{
    height: auto;
}
.myrooms-list h1{
    width: 500px;
    border-bottom: 1.5px solid teal;
    font-size: 25px;
    margin-bottom: 2%;
}
.myrooms-list-body{
    height: auto;
    width: 500px;
    border-bottom: 1.5px solid teal;
    margin-bottom: 5%;
    transition: .3s;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.myrooms-list-body h3{
    font-size: 20px;
}
.myrooms-list-body:hover{
    background-color: #DDDDDD;
    box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
  transform: translateY(-4px);
}


.mymembers-list h1{
    border-bottom: 1.5px solid teal;
    font-size: 25px;
    margin-bottom: 2%;
}
.mymembers-list{
    height: auto;
    width: 600px;
    padding-left: 5%;
}
.mymembers-list-body{
    height: auto;
     width: 500px;
    border-bottom: 1.5px solid teal;
    margin-bottom: 5%;
    transition: .3s;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.mymembers-list-body:hover{
    background-color: #DDDDDD;
    box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

@media screen and (max-width: 1024px){
    .brains-logo{
         width: 300px;
     }
    .room-list{
        width: 100%;
        margin: 2%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
    }
    .myrooms-list h1{
        width: 400px;
        border-bottom: 1.5px solid teal;
        font-size: 25px;
        margin-bottom: 2%;
    }
    .myrooms-list-body{
        height: auto;
        width: 400px;
        border-bottom: 1.5px solid teal;
        margin-bottom: 5%;
        transition: .3s;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .mymembers-list{
        height: auto;
        width: 500px;
        padding-left: 5%;
    }
    .mymembers-list-body{
        height: auto;
         width: 450px;
        border-bottom: 1.5px solid teal;
        margin-bottom: 5%;
        transition: .3s;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}
@media screen and (max-width: 768px){
    .brains-logo{
         width: 300px;
     }
    .room-list{
        width: 100%;
        margin: 2%;
        height: auto;
        display: inline-block;
        flex-wrap: wrap;
        justify-content: left;
    }
    .myrooms-list h1{
        width: 100%;
        border-bottom: 1.5px solid teal;
        font-size: 25px;
        margin-bottom: 2%;
    }
    .myrooms-list-body{
        height: auto;
        width: 100%;
        border-bottom: 1.5px solid teal;
        margin-bottom: 5%;
        transition: .3s;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .mymembers-list{
        height: auto;
        width: 100%;
        padding-left: 0%;
    }
    .mymembers-list-body{
        height: auto;
         width: 100%;
        border-bottom: 1.5px solid teal;
        margin-bottom: 5%;
        transition: .3s;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}

@media screen and (max-width: 375px){
  
}