body {
    background-color: black;
	overflow-x:hidden;
    
    display:flex;
	flex-direction: column;
	align-items:center;
	justify-content:center;
	background-size:cover;
	background-position: center;
}

img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;

}

.slogan {
    color: rgb(190, 255, 250);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight:light;
    font-size:40px;

    text-align: center;
    animation: glow 10s ease-in-out infinite alternate;
    letter-spacing: 1px;


    width:100vw;

}

.Content {
	color: rgb(255, 255, 255);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight:normal;
    font-size:40px;
	font-size:20px;
    text-align: justify;
    letter-spacing: -0.5px;
	
	text-shadow: rgb(255, 255, 255) 1px 0 10px;
	padding: 5px;
	margin: 0px;
	

    width:50vw;
    padding-top: 0;
    padding-bottom: 0;
} 

.Button {
    margin: 40px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #00ffe5;
    text-decoration: none;
    border: 2px solid #00f7ff;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

	text-shadow: rgb(0, 0, 0) 1px 0 10px;
}

.Button:hover {
	background-color: #00ffe5;
	color: #000;
}

@keyframes glow {
    from {
      text-shadow: 0 0 1px #ffffff, 0 0 4px #00ffd9, 0 0 6px #00e6de, 0 0 8px #00e6de, 0 0 10px #00e2e6, 0 0 12px #00cfe6, 0 0 14px #00dbe6;
    }
    to {
      text-shadow: 0 0 2px #fff, 0 0 6px #25ffd7, 0 0 8px #22ffe9, 0 0 10px #25ffe9, 0 0 12px #25ffe2, 0 0 14px #4dfffc, 0 0 16px #4dffe7;
    }
  }


 
