body {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    background-image: url('https://cdn.discordapp.com/attachments/825531463079952405/1177632393742516298/pexels-felix-mittermeier-956999.jpg?ex=657336a2&is=6560c1a2&hm=99b9510bc177916ba41cbfa756a6771ffacbe982347a63d57e6712231eaa17a2');
    background-size: cover;
    color: #ffa500; /* Complement of dark blue (orange) for text color */
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    background-color: rgba(51, 51, 51, 0.85); /* Dark grey background with lower opacity */
    border: 2px solid #ffa500; /* Orange border */
    border-radius: 10px; /* Bevels */
    padding: 20px; /* Padding for content */
    max-width: 400px; /* Adjust the maximum width as needed */
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.5); /* Orange box shadow */
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

img {
    width: 100px;
}

.link-box {
    margin-top: 20px;
    background-color: #444; /* Darker grey for the box */
    padding: 10px;
    border-radius: 5px;
}

.link-box a {
    text-decoration: none;
    color: white; /* White text color for the link */
}