body{
margin:0;
font-family:Arial, sans-serif;
color:white;
background:url("background.jpg") no-repeat center center fixed;
background-size:cover;
}

/* dark transparent overlay */

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(5,15,60,0.65);
z-index:0;
}

/* top bar */

.topbar{
position:fixed;
top:0;
width:100%;
height:60px;
background:rgba(10,20,80,0.85);
display:flex;
align-items:center;
justify-content:center;
z-index:2;
}

.title{
font-size:28px;
font-weight:bold;
}

/* buttons */

.left-button{
position:absolute;
left:20px;
background:#1b3ea8;
padding:10px 16px;
border-radius:6px;
text-decoration:none;
color:white;
}

.discord-button{
position:absolute;
right:20px;
background:#5865F2;
padding:10px 16px;
border-radius:6px;
text-decoration:none;
color:white;
}

.left-button:hover{
background:#2955d9;
}

.discord-button:hover{
background:#6d78ff;
}

/* content */

.content{
position:relative;
z-index:1;
margin-top:120px;
display:flex;
flex-direction:column;
align-items:center;
gap:25px;
}

/* description */

.description{
font-size:20px;
text-align:center;
max-width:700px;
background:rgba(0,0,80,0.5);
padding:15px 25px;
border-radius:10px;
}

/* ip boxes */

.ip-box{
background:rgba(0,0,80,0.7);
padding:15px;
border-radius:10px;
display:flex;
gap:10px;
}

.ip-box input{
border:none;
background:#0d1c4d;
color:white;
padding:10px;
width:260px;
border-radius:5px;
}

.ip-box button{
background:#1b3ea8;
border:none;
color:white;
padding:10px 15px;
border-radius:5px;
cursor:pointer;
}

.ip-box button:hover{
background:#2955d9;
}

/* version */

.version{
margin-top:-10px;
font-size:16px;
color:#a8c3ff;
}
