*{
    padding: 0;
    margin: 0;
}
.wrapper{
    background: url(1.jpg) no-repeat; 
    background-size: cover;
    height: 100vh;
}
.navbar{
    height:80px ;
    width: 100%;
    background: rgba(0,0,0,0.4);
}
.navbar ul{
    float: right;
    margin-right:20 px ;
}
.navbar ul li{
    list-style: none;
    margin:0 8px ;
    display:inline-block ;
    line-height:80px ;
}
.navbar ul li a{
    text-decoration: none ;
    color: white;
    font-size:20px ;
    padding: 6px 13px;
    transition: .4s;
}
.navbar ul li a.active,
.navbar ul li a:hover{
background: red;
border-radius: 2px;
}
.wrapper .center{
    position: absolute;
    top: 50%;
    left: 55%;
    transform:translate(-50%, -50%) ;
    user-select: none;
}

.donate ul{
    float: right;
    margin-right:20 px ;
}
.donate ul li{
    list-style: none;
    margin:0 8px ;
    display:inline-block ;
    line-height:80px ;
}
.donate ul li a{
    text-decoration: none ;
    color: white;
    font-size:20px ;
    padding: 6px 13px;
    transition: .4s;
}
.donate ul li a.active,
.donate ul li a:hover{
background: red;
border-radius: 2px;
}
.alt .center{
    position: absolute;
    top: 50%;
    left: 55%;
    transform:translate(-50%, -50%) ;
    user-select: none;
}
#footer{
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
}