#modal {
    position: absolute;
	top: 14%;
	left: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 5px;
}

#modal a {
	color: white;
	text-decoration: none;
	font-size: 18px;
	font-weight: normal;
	line-height: 15px;
}

.modal__window {
	position: relative;
	background-color: rgb( 235, 15, 75 );
	border-radius: 5px;
	padding: 1em 2em;
}

#modal:target {
    visibility: hidden;
    opacity: 0;
}