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

body {
    font-family: 'Lexend', sans-serif;
    background-color: #0A0A0A;
    color: #fafafa;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.hn-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
}

.hn-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hn-desc {
    font-size: 15px;
    margin-bottom: 20px;
    max-width: 700px;
}

.hn-contact {
    background-color: #FF0532;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.hn-contact:hover {
    background-color: #e0142f;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: calc(100% - 34px);
    font-size: 12px;
    max-width: 1048px;
    margin: 0 auto;
    border-top: 0.2px solid #1f1f1f;
}

.hn-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 8px;
}

.hn-links a:hover {
    text-decoration: none;
}