html,
body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.content {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.who-am-i {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-box {
    width: 100%;
    max-width: 800px;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;

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

    input {
        flex: 1;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;

        &:focus {
            border-color: #007bff;
            outline: none;

            &::placeholder {
                color: transparent;
            }
        }
    }
}

.post-container {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
}

.post-container .post {
    height: auto;
    min-height: 260px;
    max-width: 200px;

    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post-container .post h2 {
    margin: 0;
    font-size: 24px;
    color: #333;

    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.post-container .post p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.post-container .post a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;

    &:hover {
        color: #0056b3;
        text-decoration: underline;
    }
}
