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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    text-align: center;
}

h1 {
    font-size: 5em;
    color: #000;
}

p {
    font-size: 1.2em;
    color: #666;
}

.info-box {
    margin-top: 20px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.link-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.link-status a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    flex-grow: 1;
}

.link-status .status {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 10px;
}

.details p {
    margin: 5px 0;
    font-size: 1em;
    color: #333;
}
