body {
     margin: 0;
     padding: 0;
     background-image: url('https://wallpaperaccess.com/full/632787.jpg');
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
     font-family: Arial, sans-serif;
     color: #ffffff;
}
 .container {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     height: 100vh;
     background-color: rgba(0, 0, 0, 0.7);
}
 .error-box {
     text-align: center;
     border-radius: 10px;
     padding: 20px;
}
 .error-box h1 {
     font-size: 120px;
     margin: 0;
}
 .error-box p {
     font-size: 24px;
}
 .quote {
     background-color: rgba(0, 0, 0, 0.7);
     padding: 20px;
     padding-top: 20px;
     padding-right: 200px;
     padding-left: 200px;
     margin-top: 20px;
     border-radius: 50px;
}
 .quote p {
     font-size: 18px;
     font-style: italic;
}
 .buttons {
     margin-top: 20px;
}
 button {
     padding: 10px 20px;
     border: none;
     border-radius: 20px;
     font-size: 18px;
     cursor: pointer;
     margin: 10px;
}
 .discord-button {
     background-color: #7289DA;
     color: #ffffff;
}
 .back-button {
     background-color: #e74c3c;
     color: #ffffff;
}
 footer {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background-color: #222222;
     color: #ffffff;
     text-align: center;
     padding: 4px;
     font-size: 14px;
}
 .footer-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 20px;
}
 .footer-content img {
     width: 48px;
     height: 30px;
}
 .footer-left {
     display: flex;
     align-items: center;
     margin-right: 20px;
}
 .footer-left p {
     margin-left: 10px;
}
 .footer-links a, .footer-link {
     color: #ffffff;
     text-decoration: none;
     margin: 0 10px;
     border-bottom: 1px solid transparent;
     transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
 .footer-links a:hover, .footer-link:hover {
     color: #b0b0b0;
     border-bottom-color: #b0b0b0;
}