body {
    background-color: #181C14;
    color: #ECDFCC;
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.home-button {
    position: fixed;
    top: 25px;
    right: 25px;
    color: inherit;
    text-decoration: none;
    z-index: 1000;
}

.home-button svg {
    display: block;
    width: 32px;
    height: 32px;
}

.home-button:hover {
    color: #fff;
}

.letter-container {
    background-color: #181C14;
    width: 100%;
    max-width: 600px;
    text-align: left;
    line-height: 1.8;
    margin-top: 60px;
    padding-bottom: 20px;
}

.letter-container p,
.letter-container ul {
    margin-bottom: 1.5em;
    font-size: 1em;
}

.letter-container ul {
    padding-left: 20px;
}

.action-buttons-container {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-button {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background-color: #ECDFCC;
    color: #181C14;
    border: 2px solid #ECDFCC;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

.action-button:hover {
    background-color: transparent;
    color: #ECDFCC;
    border-color: #ECDFCC;
}


@media (max-width: 480px) {
    .letter-container p,
    .letter-container ul {
        font-size: 1.1em;
    }
    .home-button {
        top: 15px;
        right: 15px;
    }
    .home-button svg {
        width: 28px;
        height: 28px;
    }
    .letter-container {
        margin-top: 50px;
    }
    .action-button {
        padding: 10px 12px;
        font-size: 0.95em;
    }
}

.title {
    font-size: 1.8em;
    font-weight: 700;
    color: #ECDFCC;
    text-align: center;
    margin-bottom: 1.5em;
}