*{
	margin: 0;
	padding: 0;
	background-color: transparent;
	color: #0d1642;
	border: none;
	outline: none;
}

html, body{
	position: relative;
	width: 100%;
	height: 100%;
	font-family: Verdana, Arial, sans-serif;
	background-color: #f5f5f5;
}

body{
	overflow-x: hidden;
/*	background-image: linear-gradient(to top right, #1D1C58, silver, #01A9F0);	*/
	background-image: linear-gradient(to top right, #0052A3, silver, #4D8533);	
}

button{
	position: relative;
}

button.rounded{
	background-color: rgb(207, 211, 7);
	border-radius: 50%;
}

button:hover {
	color:blue;

}
  
button[title]:hover:after {
	/*content: attr(title);*/
	color: red;
}

.title {
	position: absolute;
    font-weight: bolder;
    color: #0052A3;
	left: 30%;
	top: 30%;
}

.header {
	position: absolute;
	top: 0;
	height: 180px;
	width: 100%;
}

.footer {
    position: fixed;
    bottom: 0;
	width: 100%;
	text-align: center;
}

.container {
	position: relative;
	max-width: 1024px;
	top: 10rem;
	margin: 0 auto;
	text-align: center;
  }

  p {
	font-size: 20px;
	color: white;
	margin-bottom: 30px;
  }

  li {
	padding: 6px 0;
  }

  .contact {
	display: inline-block;
	padding: 12px 24px;
	margin: 3px;
	font-size: 18px;
	background-color: #0052A3;
	color: silver;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s;
	cursor: pointer;
  }

  .contact:hover {
	background-color: #4D8533;
	color: white ;
  }
