@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body, html{
background-color: #000;
width: 100%;
position: relative;
height: 100%;
overflow: hidden;
margin: 0;
}
body {
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.middle{
width: calc(100% - 50px);
padding: 25px;
max-width: 350px;
position: absolute;
top: 50%;
left: 50%;
text-align: center;
transform: translate(-50%, -50%);
}
.middle img{
    width: 100%;
    margin-bottom: 20px;
    user-select: none;
}
.middle a{
    text-decoration: none;
    font-family: "Roboto", sans-serif;
font-size: 16px;
color: #b47633;
    margin-bottom: -13px;
    padding: 30px;
    transition: .2s;
}
.middle a:hover{
    transition: .2s;
    opacity: .8;
}
.copyright{
position: absolute;
bottom: 0;
text-align: center;
width: 100%;
font-family: "Roboto", sans-serif;
font-size: 13px;
margin-bottom: 20px;
color: #b47633;
}
h1{
    color: #020202;
    font-size: 5px;
    position: absolute;
    pointer-events: none;
}