Te / styles.css
TIMBOVILL's picture
Update styles.css
9d6b558 verified
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: url('background.png') no-repeat center center fixed;
background-size: cover;
font-family: Arial, sans-serif;
color: white;
}
.container {
text-align: center;
color: white;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 20px;
padding: 20px;
width: 300px;
}
.header .logo {
width: 150px;
}
.header p {
margin-top: 10px;
font-size: 14px;
}
.content .menu-item {
margin: 15px 0;
padding: 10px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s;
}
.content .menu-item:hover {
background-color: rgba(255, 255, 255, 0.5);
}
.footer .jailbroken {
margin-top: 20px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 10px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
}
.footer .jailbroken:hover {
background-color: rgba(255, 255, 255, 0.5);
}