@media screen and (min-width: 200px){




	*{
		margin: 0;
		padding: 0;
		text-decoration: none;
	}

	html{
		font-size: 10px;
		font-family: arial;
	}



	

	ul{
		list-style-type: none;
	}


	p, h1, h2, h3, h4, li, a, b, span, i{
		-webkit-touch-callout: none; /* iOS Safari */
	    -webkit-user-select: none; /* Safari */
	    -moz-user-select: none; /* Firefox */
	    -ms-user-select: none; /* Internet Explorer/Edge */
	    user-select: none;
	}


	
	p, li{
		font-family: 'Varela Round', sans-serif;
	}





	.body_overlay{
		bottom: 0; top: 0; left: 0; right: 0;	
		z-index: 3;
		width: 100%;
		opacity: 0;
		display: none;
		background-color: black;
		position: fixed;
	}





	
 	.menu_wrapper {
		position: fixed;
		top: 0;
		right: 0;             /* stick to right */
		height: 100%;
		width: 0;
		background: white;
		overflow: hidden;
		z-index: 5;
	}

	.open_menu {
		display: block;
		overflow: scroll;
		animation-name: open_menu;
		animation-duration: 200ms;
		animation-timing-function: linear;
		animation-fill-mode: forwards;
	}

	@keyframes open_menu {
		0% {
			opacity: 0%;
			transform: translateX(100%); /* hidden to right */
		}
		100% {
			opacity: 100%;
			transform: translateX(0);    /* slide in leftwards */
			width: 80%;
		}
	}

	.close_menu {
		animation-name: close_menu;
		animation-duration: 200ms;
		animation-timing-function: linear;
		animation-fill-mode: forwards;
	}

	@keyframes close_menu {
		0% {
			opacity: 100%;
			transform: translateX(0);
			width: 80%;
		}
		100% {
			opacity: 0%;
			transform: translateX(100%);
			width: 0;
		}
	}



	h1, h2, h3, h4{
		font-family: 'Montserrat', sans-serif;
	}



	.menu_wrapper{
		box-sizing: border-box;
		position: fixed;
		padding-bottom: 20px;
		top: 0;
		font-family: 'Varela Round', sans-serif;
		font-size: 1.6rem;
		background-color: white;
		width: 85%;
		font-size: 0.8rem;
		height: 110vh;
	}



	.menu_head{
		background-color: rgb(5, 5, 30);
		padding: 50px 10px 10px 20px;
	}

	

	

	.profile_name{
		margin-top: 0;
		padding: 10px 0 4px 10px;
		font-size: 1.1rem;
		color: white;
		font-family: 'Montserrat', sans-serif;

	}


	.profile_name > span{
		font-family: 'Varela Round', sans-serif;
		display: block;
		font-size: 1.1rem;
		color: rgb(200, 200, 200);
	}




	.menu_wrapper nav{
		overflow-y: auto;
		font-size: 1.2rem;
		margin-top: 20px;
	}



	.menu_wrapper nav li{
		box-sizing: border-box;
		padding: 7px 5px 7px 10px;
		color: black;
		margin-top: 25px;
		width: 85%;
		margin-left: auto;
		margin-right: auto;
	}

	.menu_wrapper nav .logout{
		border: 1px solid rgb(220, 50, 0);
		padding: 10px 10px 7px 8px;
		border-radius: 18px;
		color: rgb(220, 50, 0);
		font-size: 1rem;
	}

	.menu_wrapper nav .logout i{
		font-size: 1rem;
		background-color: rgb(220, 50, 0);
		padding: 5px 10px;
		border-radius: 15px;
		color: white;
	}



	

	.menu_wrapper nav a{
		color: black;
		font-weight: 600;
	}



	.menu_wrapper nav i{
		margin-right: 5px;
		font-size: 1.6rem;
		color: rgb(120, 160, 200);
	}





	.wallet_wrapper{
		position: relative;
		width: 85%;
		margin: 30px auto 0 auto;
		background: linear-gradient(
			45deg,                /* top-left → bottom-right */
			rgb(10, 50, 8) 0%,         /* top-left corner */
			rgb(25, 35, 75) 60%,        /* fills most of the diagonal */
			transparent 100%      /* top-right corner fades out */
		);

		box-sizing: border-box;
		padding: 15px 15px;
		border-radius: 10px;
	}

	.wallet_wrapper >p{
		color: rgb(150, 150, 150);
	}



	h1{
		color: rgb(230, 230, 230);
		font-size: 1.8rem;
	}


	.vomit_image{
		position: absolute;
		width: 150px;
		display: block;
		margin: 0 auto 0 auto;
		right: 0;
		top: -30px;
	}

	


	.wallet_wrapper > div{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.wallet_wrapper button{
		height: 40px;
		background-color: rgb(220, 220, 220);
		display: block;
		width: 75%;
		margin: 10px auto 0 auto;
		padding: 10px 0;
		border:  none;
		border-radius: 7px;
		font-size: 0.9rem;
	}

	.wallet_wrapper button+button{
		background-color: inherit;
		border: 1px solid rgb(220, 220, 220);
		color: rgb(220, 220, 220);
	}







	.alert_wrapper{
		color: rgb(50, 50, 50);
		width: 85%;
		z-index: 6;
		padding: 30px;
		box-sizing: border-box;
		background-color: white;
		position: absolute;
		top: 30%;
		left: 7.5%;
	}


	.alert_wrapper i{
		width: 100%;
		font-size: 4rem;
		text-align: center;
		display: block;
	}
	.fa-circle-exclamation{	
		color: red;
	}
	.fa-circle-check{
		color: rgb(0, 130, 80);
	}


	.alert_wrapper p{
		margin-top: 20px;
		text-align: center;
		font-size: 1.3rem;
		line-height: 1.7;
	}


	.alert_wrapper button{
		display: block;
		margin: 20px auto 0 auto;
		background-color: rgb(0, 50, 100);
		border: none;
		width: 80px;
		padding: 10px 8px;
		color: white;
		
	}
}
























@media screen and (min-width: 300px){


	html{ 
		font-size: 12px;
	}
}


















@media screen and (min-width: 350px){


	html{
		font-size: 13.5px;
	}
}









@media screen and (min-width: 400px){


	@keyframes open_menu{

		0%{
			opacity: 0%;
			width: 0%
		}

		100%{
			opacity: 100%;
			width: 320px

		}
	}
}







@media screen and (min-width: 500px){

	@keyframes open_menu{

		0%{
			opacity: 0%;
			width: 0%
		}

		100%{
			opacity: 100%;
			width: 350px

		}
	}
}