* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	overscroll-behavior: none;
}

body {
	height: 90vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.board {
	height: 85vh;
	width: 80vw;
	background-color: #000;
	border-radius: 0px;
	position:relative;
}

.ball {
	height: 1%;
	width: 1%;
	position: absolute;
	top: 49.5%;
	left: 49.5%;
	background-color: #ffffff;
	transition: all 0.01s linear;
}

.paddle {
	height: 15%;
	width: 15px;
	position: absolute;
}

.paddle_1 {
	top: 10%;
	right: 95%;
	transition: all 0.05s linear;
	overflow: hidden;
}

.paddle_1 .inner {
	background-color: #ffffff;
    width: 400%;
    height: 200%;
    position: absolute;
    border-radius: 100%;
    top: -50%;
    right: 0px;
}

.paddle_2 {
	top: 75%;
	left: 95%;
	transition: all 0.05s linear;
	overflow: hidden;
}

.paddle_2 .inner {
	background-color: #ffffff;
    width: 400%;
    height: 200%;
    position: absolute;
    border-radius: 100%;
    top: -50%;
    left: 0px;
}

.player_1_score {
	height: 50px;
	width: 50px;
	color: chartreuse;
	position: fixed;
	left: 30vw;
	margin-top: 20px;
}

.player_2_score {
	height: 50px;
	width: 50px;
	color: chartreuse;
	position: fixed;
	left: 70vw;
	margin-top: 20px;
}

.message {
	position: absolute;
    /* color: #48426d; */
    /* height: 10vh; */
    width: 100%;
    color: #c9cbff;
    text-align: center;
    margin: 70px auto auto auto;
}

.rooms {
	position: absolute;
    z-index: 999;
    height: 85vh;
    width: 80vw;
    background-color: #000;
    border-radius: 0px;
    color: #fff;
    text-align: center;
}

.rooms h1 {
	height: 20%;
    position: relative;
    display: block;
    line-height: 200%;
	border-bottom: 1px solid #fff;
}

.rooms .roomlist {
	display: block;
    height: 60%;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
}

.rooms .roomlist .room_name {
	border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    padding-top: 10px;
    font-weight: bold;
	cursor: pointer;
}

.rooms .new_room {
	line-height: 200%;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 28px;
    height: 20%;
    display: block;
	cursor: pointer;
}