
* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}

*,
*::before,
*after:: {
	box-sizing: inherit;
}

:root {
	--body-color1: #042331;
	/*very dark blue mostly black */
	--body-color2: #0077B6;
	/*main color */
	--body-color3: #0A9396;
	--head-color1: #03045E;
	/*navy blue */
	--head-color2: #CAF0F8;
	/*power blue */
	--head-color3: #6930C3;
	--head-color4: #7400B8;
	--black: #000;
	--secondary: #063146;
	/*lightblue*/
}

html {
	box-sizing: border-box;
	font-size: 62.5%; //1rem =10px
}

body {
	background-color: black;
}

/*-----This is the start of the Popup */
.warning {
	color: red;
}

.popup {
	background-color: black;
	color: white;
	height: auto;
	width: auto;
	/*padding: 40px 40px;
	margin-left: 4em;
	position: fixed;
	transform: translate(-50%, -50%);
	left: 45%;
	top: 50%;
	border-radius: 8px;
	font-family: sans-serif;
	font-size: x-large;
	display: flex;
	z-index: 1000;
	border: thin white solid;*/
}

.popup p, h2 {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	align-self: center;
		
}

.popup button {
	display: flex;
	margin: auto;
	font-size: 40px;
	color: white;
	border: none;
	outline: none;
	cursor: pointer;
}

.popuplogo {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	align-self: center;
	
}

.bottompop {
	display: grid;
	grid-template-rows: repeat(1, 1fr);
	justify-content: center;
	align-content: grid-start;
	gap: 1em;
	margin: .5rem auto;
	width: min(90%, 75rem);
	/*border: thin white solid;*/
	padding: 1em;

}

.leave,
.enter {
	border-radius: .5em;
	padding: .5em;
	text-align: center;
	font-size: xx-large;

}



.bottompop a:hover {
	background-color: red;
}

.popup button:hover {
	background-color: red;
}

.rta0 a {
	background-color: yellow;
	margin-bottom: 75vh;
}

.rta0:hover {
	color: red;
}

img.rta0 {
	height: 70px;
	width: 150px;
	background-color: black;
}

@media (min-width: 46rem) {
	.popupbutton {
		grid-auto-flow: column;
		margin: 1rem auto;
		gap: .4em;
		height: 80vh;
	}

}

@media (max-width: 45rem) {
	.popup {
		margin-left: 1em;
		font-size: xx-small;
		margin: 2rem;
		overflow-y: scroll;

	}

	.popup p {
		font-size: xx-small;
		text-align: justify;
		margin: 0px 0;
	}

	.popup button {
		font-size: xx-small;
		padding: 5px;
	}

	.bottompop {
		margin: 0rem;
		padding: 0rem;

	}
	.popuplogo img {
		height: 300px;
		width: 250px;
	}
}



.popup p {
	font-size: 16px;
	text-align: justify;
	margin: 20px 0;


}

.popup a {
	display: block;
	width: 150px;
	position: relative;
	margin: auto;
	text-align: center;
	background-color: #0f72e5;
	/*color is blue*/
	color: #fff;
	text-decoration: none;
	padding: 10px 0;
	border-radius: 10px;

}

.bottompop {
	/*overflow-y: scroll;*/
}

/*-----This is the end of the Popup */