body {
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Roboto Mono', monospace;
    background-color: #181C14;
    color: #ECDFCC;
    box-sizing: border-box;
    overflow-x: hidden;
    text-align: center;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    color: #ECDFCC;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ECDFCC;
}

.image-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4A5341;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.description {
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #ECDFCC;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px;
}

.button {
    display: block;
    padding: 12px 20px;
    background-color: #ECDFCC;
    color: #181C14;
    border: 2px solid #ECDFCC;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
}

.button:hover {
    background-color: transparent;
    color: #ECDFCC;
    border-color: #ECDFCC;
    transform: translateY(-2px);
}

@media (min-width: 600px) {
    .button-group {
        flex-direction: row;
        justify-content: center;
    }
    .button {
        width: auto;
        min-width: 150px;
    }
}

.page-title {
    font-size: 28px;
    color: #ECDFCC;
    margin: 20px 0;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
