body{
    overflow: hidden;
	width:100vw;
	height:100vh;
	display:flex;
	flex-direction: column;
	align-items:center;
	justify-content:center;
	background-size:cover;
	background-position: center;
    background-image: url('../images/brainHuman.png');
}

.title{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 4vw;
    text-align: center;
	text-shadow: rgb(0, 0, 0) 1px 0 10px;

    color: #00e1ff;
    text-shadow: -1px 2 black, 0 1px black, 1px 0 black, 0 -1px black;

    
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    margin-bottom: 0px;
}

.disclaimer{
    text-align: center;

    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 22px;
    text-align: center;
	text-shadow: rgb(0, 0, 0) 1px 0 10px;

    color: white;
    
    text-shadow: -1px 2 black, 0 1px black, 1px 0 black, 0 -1px black;
    
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    margin-top: 0px;

    border-radius: 0px 0px 10px 10px;

}

.button{
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #00e1ff;
    text-decoration: none;
    border: 2px solid #00e1ff;
    border-radius: 5px;
    font-weight: bold;
    transition: scale 0.3s, color 0.3s, background-color 0.3s;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

	text-shadow: rgb(0, 0, 0) 1px 0 10px;
}

.button:hover {
	scale: 1.2;
	background-color: #00e1ff;
	color: #000;
}
