*{
    margin: 0;
    padding: 0;
	user-select: none;
}
::selection{
	background-color: #eb99ff;
}
body{
	background-color:#262626;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    width: 100vw;
    height: 100vh;
}
.container{
	width:fit-content;
	border:7px solid lime;
	border-radius:5px;
	background-color:#c6c6c6;
    padding: 5px;
}
.btn{
	width:70px;
	height:70px;
	border-radius:50%;
	color:yellow;
	background-color:red;
	font-size:30px;
	border:2.5px solid yellow;
	padding:2px;
    margin: 2px;
}
.textbox{
	width:300px;
	text-align:right;
	height:50px;
	font-size:40px;
	background-color:yellow;
	color:red;
    border-radius: 5px;
}
.btn:hover{
	border:2px solid red;
	background-color:yellow;
	color:red;
}
.textbox:hover{
	border:2px solid yellow;
	color:yellow;
	background-color:red;
}
.container:hover{
	background-color:white;
	border:7px solid blue;
}