* {
	padding: 0;
	margin: 0;
	font-family: 'Poppins', sans-serif;
}

:root {
	--test: 1px solid white;
	--bg: #202124;
	--text-color: #808080;
}

body {
	background-color: var(--bg);
	color: var(--text-color);
	height: 100vh;
}

h1 {
	font-size: 50px;
}

.form-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: inherit;
}

.form {
	width: 60%;
	height: 300px;
	margin: 50px;
	text-align: center;
}

.form div {
	margin: 20px;
}

.optns div {
	margin: 40px;
	display: inline;
}

input[type='radio'] {
	cursor: pointer;
}

.optns div label {
	font-size: 25px;
	cursor: pointer;
}

div.submit {
	margin: 20px auto 0 auto;
	height: 140px;
	width: 50%;
	position: relative;
}

.btn {
	height: fit-content;
	width: fit-content;
	font-size: 16px;
	margin: 40px 5px 40px 5px;
	padding: 12px;
	border-radius: 8px;
	border: none;
	cursor: pointer;

	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
	transition: 0.5s ease;
}

img {
	display: none;
	float: right;
	position: absolute;
	left: 95%;
	top: 25px;
	cursor: pointer;
}

/* modal */

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background-color: whitesmoke;
	color: #000;
	margin: 15% auto;
	padding: 30px 50px 30px 50px;
	border: 1px solid #888;
	width: 75%;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

/* modal content */

.modal-content h2 {
	margin-bottom: 30px;
}

.modal-form div {
	margin-bottom: 15px;
	margin-left: 15px;
}

.modal-form input[type='text'] {
	width: 30%;
	padding: 3px;
	margin-right: 20px;
}

.modal-form div label {
	font-size: 18px;
	margin-right: 20px;
	cursor: pointer;
}

.copy-url {
	margin-top: 30px;
}

.btn-modal {
	padding: 10px;
	border: none;
	border-radius: 3px;
	margin-left: 20px;
	margin-right: 20px;
	background-color: #adff2f;
	cursor: pointer;
}

.btn-modal:active {
	transform: translateY(2px);
}

span.info {
	color: #888;
}

#url {
	pointer-events: none;
}
