.containerGuestUser{
	background-color: rgba(0, 0, 0, 0.0);
	display: flex;
	justify-content: space-evenly;
	margin-bottom: 10px;
}

.guestUser{
	font-size: 8px;
	border: 3px solid white;
	border-radius: 25px;
	background-color: rgb(100 210 255);
	width: 135px;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	padding: 5px 0;
	margin: 5px;
}

.tombolGuestUser{
	color: blue;
	font-weight: bold;
	font-size: 12px;
	border: 1px solid white;
	border-radius: 25px;
	width: 60%;
	padding: 5px 5px;
	margin: auto;
}
.containerWelcomeWords{
	display: flex;
	flex-direction: column;
	background-color: rgba(144, 238, 144, .75);
}
.welcomeWords{
	background-color: green;
	border-radius: 20px;
	padding: 15px;
	font-size: 13px;
	color: white;
	text-align: center;
	margin-bottom: 10px;
}
.container-login-front{
	background-color: rgba(255, 255, 255, .5);
	border-radius: 15px;
	display: flex;
	padding: 10px 5px;
}
.login-front{
	background-color: rgb(100 210 255);
	margin: auto;
	padding: 10px 20px;
	border-radius: 15px;
	border: 1px solid white;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 50%);
}

.home.phone{
	background-color: white;
	border-radius: 25px;
	border: solid black 3px;
	display: block;
    line-height: 18px;
}
.home.phone ul { 
   list-style-type: disc;
   list-style-position: outside;
   margin-left: 20px;
}



/*media query*/
/* Extra small devices (portrait phones, less than 576px)*/
@media (min-width: 576px) {
	
	.containerWelcomeWords{
/*		display: flex;*/
		flex-direction: row;
/*		background-color: rgba(144, 238, 144, .75);*/
	}

	.welcomeWords{
/*		background-color: green;*/
/*		border-radius: 20px;*/
/*		padding: 15px;*/
/*		font-size: 13px;*/
/*		color: white;*/
/*		text-align: center;*/
		margin-bottom: 0px;
		margin-right: 10px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 50%;
/*		flex: 2;*/
	}
	.containerRegist{
		width: 50%;
	}
	.containerGuestUser{
/*		background-color: rgba(0, 0, 0, 0.0);*/
/*		display: flex;*/
/*		flex-direction: column;*/
/*		justify-content: space-evenly;*/
/*		margin-bottom: 10px;*/
		margin: auto;
/*		flex: 1;*/
	}
	.container-login-front{
/*		background-color: rgba(255, 255, 255, .5);*/
/*		border-radius: 15px;*/
/*		display: flex;*/
/*		padding: 10px 5px;*/
/*		flex: 2;*/
	}
	.login-front{
/*		background-color: rgb(100 210 255);*/
/*		margin: auto;*/
/*		padding: 10px 20px;*/
/*		border-radius: 15px;*/
/*		border: 1px solid white;*/
/*		box-shadow: 5px 5px 10px rgba(0, 0, 0, 50%);*/
	}
}
	

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 768px) {
	.home.phone{display: none}
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 992px) { ... }

/*Large devices (desktops, 992px and up)*/
@media (min-width: 1200px) { ... }

/*Extra large devices (large desktops, 1200px and up)*/