body {
    background-color: #faf9f6;
    color: #2b2b2b;
    font-family: "Courier New", Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.label-container {
    background-color: #ffffff;
    border: 2px solid #2b2b2b;
    padding: 40px;
    width: 100%;       /* Allows flexibility on mobile */
    max-width: 440px;  /* Keeps the professional look on desktop[cite: 2] */
    box-shadow: 4px 4px 15px rgba(0,0,0,0.03);
    box-sizing: border-box; /* Ensures padding does not break layout[cite: 2] */
}

.header {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: -1px;
    border-bottom: 1px solid #2b2b2b;
    padding-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-label {
    font-weight: bold;
}

.info-value {
    text-align: right;
    max-width: 60%;
}

.description {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    border-top: 1px dashed #ccc;
    padding-top: 20px;
}

.profile-pic {
    width: 120px; 
    height: auto;
    display: block;
    margin: 30px auto 10px auto;
    border: 1px solid #2b2b2b;
}

.footer-links a {
    color: #2b2b2b;
    text-decoration: none;
    font-weight: bold;
}

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