/* Reset some default styles to start fresh */
body, h1, ul, li, p {
    margin: 0;
    padding: 0;
    color: #B1B1B1;
}

/* Apply a background color to the body */
body {
    background-color: #0A0708;
    font-family: Arial, sans-serif;
}

header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Style the separator under the h1 */
.centered-box h1::after {
    content: '';
    display: block;
    width: auto; 
    height: 3px;
    background-color: #B1B1B1; 
    margin: 10px auto;
}

/* Style the centered box */
main {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.centered-box {
    background-color: #444444;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 4px solid #747474; 
}

.centered-box a {
    text-decoration: none;
    color: #B1B1B1; 
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block; 
    margin: 10px;
    padding: 10px 20px; 
    border: 2px solid #0A0708;
    border-radius: 5px;
}

/* Add hover effect to buttons */
.centered-box a:hover {
    background-color: #0A0708; /* Change background color on hover */
    color: #B1B1B1; /* Change text color on hover */
}

/* Style the small image */
.icon-container {
    margin-top: 20px; /* Add margin to separate the icon from the links */
    text-align: center; /* Center the icon horizontally */
}

/* Style the icons */
.icon-container a {
    display: inline-block; /* Display icons as inline-block elements */
    margin: 0 10px; /* Add margin between icons */
}

.icon-container img {
    width: 50px; /* Adjust the width as needed to make it smaller */
    height: auto; /* Maintain the aspect ratio */
    border: none; /* Remove the border from the image */
}

.centered-box ul {
    list-style-type: none;
    padding: 0;
}

.centered-box li {
    margin: 0;
    padding: 0;
}

/* Style the small image */
.centered-box img {
    width: 50px; /* Adjust the width as needed to make it smaller */
    height: auto; /* Maintain the aspect ratio */
    border: none; /* Remove the border from the image */
}

/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* Add media queries for responsiveness (adjust breakpoints as needed) */
@media (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }
}