body {
	background-color: black;
	color: white;
}

.style1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-align: left;
}


.style2 {
	color: white;
	text-decoration: none;
	display: contents;
}

.style3 {
    position: fixed;
    bottom: 0;
    right: 0;
	text-decoration: none;
	color: white;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.style3:hover {
    opacity: 1;
}
