@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');

body {
	font-family: Arial, Verdana, sans-serif;
	font-size: 16px;
	color: #333;
	background: linear-gradient(to bottom, #4a90e2, #7cb6e0);
    
}
.background-image {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/2.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1; 

  }
  
svg {
	font-family: 'Poppins', sans-serif;
	width: 100%;
	height: 100%;
	font-size: 60px;
    margin: auto auto auto -470px;
}

svg text {
	animation: stroke 6s infinite alternate;
	stroke-width: 2;
	stroke: #FFFFFF;
	font-size: 100px;
}


@keyframes stroke {
	0% {
		fill: rgba(255,255,255,0);
		stroke: rgba(255,255,255,1);
		stroke-dashoffset: 25%;
		stroke-dasharray: 0 50%;
		stroke-width: 2;
	}

	70% {
		fill: rgba(255,255,255,0);
		stroke: rgba(255,255,255,1);
	}

	80% {
		fill: rgba(255,255,255,0);
		stroke: rgba(255,255,255,1);
		stroke-width: 3;
	}

	100% {
		fill: rgba(255,255,255,1);
		stroke: rgba(255,255,255,0);
		stroke-dashoffset: -25%;
		stroke-dasharray: 50% 0;
		stroke-width: 0;
	}
}

/*
h1 {
    font-size: 60px;
    text-align: center;
    padding: 20px 0;
    color: #fff; 
    font-family: 'Poppins', sans-serif;
}
*/
p {
	font-family: 'Merriweather', serif;
	margin-bottom: 10px;
	color: #fff;
}

ul {
	font-family: 'Merriweather', serif;
	list-style: square inside;
	margin-left: 20px;
	color: #fff;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

th, td {
	font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: bolder;
	padding: 20px;
	border:1px solid #d6d6d6;
	text-align: left;
	background-color: rgba(255, 246, 246, 0.5);
	color: #333;
}

th {
    font-size: 18px;
	background-color: #90b4d6;
	color: #f5f5fa;
	text-align: center;
	font-weight: bold;
}

tr:nth-child(even) {
	background-color: rgba(237, 235, 255, 0.3);
}

form {
	font-family: 'Lato', sans-serif;
	width: 320px;
	margin: 20px auto;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid #d6d6d6;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	color: #333;
}

legend {
	font-style: italic;
	color: #666666;
}

label {
	font-family: 'Lato', sans-serif;
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	color: #333;
}

input[type="text"],
select {
	width: 90%;
	padding: 10px;
	border: 1px solid #d6d6d6;
	margin-bottom: 10px;
	margin-left: 0px;
	font-size: 16px;
	background-color: #f2f2f2;
}

input[type="radio"] {
	margin-right: 5px;
}

.submit {
	text-align: right;
}

input[type="submit"] {
	border: none;
	background-color: #009966;
	color: #fff;
	border-radius: 5px;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 18px;
	margin: 10px auto auto auto;
}

input[type="submit"]:hover {
	background-color: #00CC33;
}
