/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-page container */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

/* Message box */
.container {
    text-align: center;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}

/* Main message */
h1 {
    font-size: 3em;
    color: #2d3436;
    margin-bottom: 20px;
}

/* Supporting text */
p {
    font-size: 1.2em;
    color: #636e72;
    margin-bottom: 30px;
}

/* Social media icons */
.icons {
    margin-top: 20px;
}

.social-icon {
    font-size: 1.1em;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #0984e3;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #74b9ff;
}