*{
	margin: 0px;
}
*::-webkit-scrollbar {
    display: none;
    width: 0px;
    height: 0px;
}
body{
	background: #e6e6e6;
}
body::-webkit-scrollbar{
	display: none;
}
body *{
	overflow: hidden;
}

main{
	position: relative;
    width: 720px;
    left: calc(50% - 360px);
	padding: 10px 0px;
}

main span#nameSection{
	position: relative;
	width: 100%;
	font-weight: bold;
	margin: 10px 0px 0px 0px;
	display: block;
}

main input{
	position: relative;
	width: 100%;
	border-radius: 5px;
	border: none;
	outline: none;
	box-sizing: border-box;
	padding: 10px;
	margin: 10px 0px 0px 0px;
}

main div.dataAccount{
	display: none;
	position: relative;
    width: 100%;
    background: white;
    padding: 10px;
    box-sizing: border-box;
    margin: 10px 0px;
    border-radius: 5px;
}
main div.dataAccount img{
	position: relative;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    float: left;
}
main div.dataAccount span{
	position: relative;
    top: 12px;
    margin: 0px 10px;
    font-weight: bold;
}

main div.generateLink{
	position: relative;
	width: 100%;
	border-radius: 5px;
	color: white;
	background: steelblue;
	text-align: center;
	margin: 10px 0px;
	font-weight: bold;
	padding: 10px 0px;
	user-select: none;
	cursor: pointer;
	display: none;
	word-break: break-all;
}

@media all and (max-width: 740px){
	
	main{
		width: calc(100% - 20px);
		left: 10px;
	}
	
}