/* =========================
   General
========================= */

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

body {
    min-height: 100vh;
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}


/* =========================
   Main Container
========================= */

.container {
    width: 90%;
    max-width: 700px;
    padding: 40px 20px;
}


/* =========================
   Company Name
========================= */

.company-name {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 10px;
}


/* =========================
   Company Subtitle
========================= */

.company-subtitle {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #a8a8a8;
}


/* =========================
   Decorative Line
========================= */

.line {
    width: 55px;
    height: 1px;
    background-color: #777777;
    margin: 28px auto;
}


/* =========================
   Construction Icon
========================= */

.construction-icon {
    font-size: 38px;
    color: #dddddd;
    margin-bottom: 18px;
}


/* =========================
   Under Construction
========================= */

h1 {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 18px;
}


/* =========================
   Description
========================= */

.description {
    font-size: 14px;
    line-height: 1.8;
    color: #999999;
}


/* =========================
   Contact List
========================= */

.contact-list {
    margin-top: 35px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;
}


/* =========================
   Contact Items
========================= */

.contact-item {
    width: 260px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 11px 18px;

    color: #d5d5d5;
    text-decoration: none;

    border: 1px solid #292929;
    border-radius: 4px;

    font-size: 13px;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}


/* Icons */

.contact-item i {
    width: 18px;
    font-size: 16px;
}


/* Hover */

.contact-item:hover {
    border-color: #666666;
    color: #ffffff;
    background-color: #151515;
}


/* =========================
   Footer
========================= */

footer {
    margin-top: 45px;

    font-size: 11px;
    letter-spacing: 2px;

    color: #555555;
}


/* =========================
   Mobile
========================= */

@media (max-width: 600px) {

    .container {
        padding: 30px 15px;
    }

    .company-name {
        font-size: 22px;
        letter-spacing: 2.5px;
    }

    .company-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .construction-icon {
        font-size: 32px;
    }

    h1 {
        font-size: 21px;
        letter-spacing: 3px;
    }

    .description {
        font-size: 13px;
    }

    .contact-item {
        width: 240px;
    }
}
