		*{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

body {
	margin: 30px;
	font-family: sans-serif;
	background-color: black;

}

h1{
	text-align: center;
	color: white;
	font-size: 24px;
/*	opacity: 80%;*/
}

h2{
	font-size: 56px;
	text-align: center;
/*	background-color: white;*/
	color: white;
}

h3{
	text-align: center;
	color: white;

}

p{ 
/*	word-break: keep-all;*/
	color: white;
	margin-right: 100px;
	margin-left: 100px;
	text-align: center;


 }


 a:visited{
	color: white;
 }

a:link{
	color: white;
}

a:hover{
	color: white;
}

 p2{
 	color: white;
	margin-right: 100px;
/*	margin-left: 100px;*/
	text-align: left;
	padding: 5px;
 }


 img{
 	margin-left: 10px;
 	width: 150px;
 	
 }


hr{
	height: 1px;
	background-color: grey;
	border: none;
	
}


.container {
  height: 20px;
  position: relative;
 
}

.vertical-center {
  margin: 0;
  position: absolute;
  left: 50%;
  -ms-
  transform: translate(-50%);
  transform: translate(-50%);
}

button{
	padding: 0px 15px;
	font-size: 14px;
	font-family: noto sans;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  color: black;
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #000000;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal-body {
/*	padding: 2px 16px;*/
background-color: #000000;
margin: 5% auto;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

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

::-webkit-scrollbar {
	width: 2px;
	background-color: grey;
}

::-webkit-scrollbar-track {
	background-color: grey;
}

::-webkit-scrollbar-thumb {
	background-color:black;
}


a{
	cursor: pointer;
	text-color : white;
	text-align: center;
/*	background-color: white;*/
}


a:visited {
  color: white;
}


a:hover {
	color:cyan;
}

img:hover {
	opacity:50%;
}


@media screen and (max-width: 704px)
{
	p{
		margin-left: 10px;
		margin-right: 10px;
	}
}














