/* style.css */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px 20px 0 40px;
    background-color: #f9f9f9;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: left;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    letter-spacing: 2px;
}

p {
    color: #333;
    margin-bottom: -6px;
}

.telnet {
    display: inline-block;
    background-color: #007BFF;
    color: #FFFFFF;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
}

footer {
    border-top: 1px solid #e0e0e0;
    margin-top: 60px;
    padding: 30px 0;
    text-align: left;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

footer a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

