.roomWindow{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.roomSearchArea{
    background-color: white;
    position: fixed;
    width: 400px;
    height: 35%;
    top: 25%;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}
.roomSearchArea input{
    width: 80%;
}

.roomLoadingContents{
    display: none;
}

.roomMatchingContents{
    display: none;
}

.roomLoadingContents img{
    width: 100%;
}

#roomSearchButton{
    display: block;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

#roomSearchExitButton{
    position: absolute;
    top:2.5%;
    right: 2.5%;
}

@media(max-width:400px){
    .roomSearchArea{
        width: 75%;
        height: 50%;
    }
}