html, body{
    width:100%;
    height:100%;
    padding:0;
    margin:0;
}
body{
	background:black;
	text-align:center;
	color:white;
	font-family:Courier New;
}

#indexlogo{
	width:3em;
	margin-top:3em;
}

.index-content{
	padding:0.5em;
}

.site-footer{
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	background:rgba(10,10,10,1);
	margin:auto;
	padding:0;
	padding-left:1em;
	pading-right:1em;
	padding-top:0.5em;
	padding-bottom:0.5em;
}

.copyright{
	font-size:0.8em;
}

.container{
    box-shadow:0 0 25px rgba(100,100,100,0.3);
}

.footer-logo{
	width:3em;
}


.get-page-btn {
    display: inline-block;
    background-color: #e0e0e0;
    color: black;
    padding: 0.8em 2em;
    margin-top: 1em;
    text-decoration: none;
    font-family: "Courier New";
    font-weight: bold;
    border: none;
    position: relative;
    overflow: hidden;
}

.get-page-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

.get-page-btn:hover {
    opacity: 0.9;
}
