@charset "UTF-8";

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, sans-serif;
    background-color: #fff;
    color: #333;
    -webkit-font-smoothing: antialiased;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Layout */
.site-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content {
    text-align: center;
}

.company-name {
    margin: 0 0 30px 0;
}

.company-name img {
    width: 200px;
    /* Adjust size as appropriate for center logo */
    height: auto;
    display: block;
    margin: 0 auto;
}

.entry-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.entry-link:hover {
    color: #000;
    border-color: #000;
}

/* Responsive */
@media (max-width: 600px) {
    .company-name {
        margin-bottom: 25px;
    }
}