* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #C0C0FF;
    color: #333;
    width: 800px;
    margin-left: 3%;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #4c50af;
    color: white;
}

.site-header h1 {
    margin: 0;
}

.site-header a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
}

.candidate img {
    max-width: 100px;
    border-radius: 50%;
    object-fit: cover;
}

#chat-with-ai label {
    display: block;
    margin-bottom: .5rem;
}

#chat-history {
    height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 1rem;
    margin-top: 1rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #4c50af;
    color: white;
}
p {
margin: 5px;
font-size: 11pt;
text-indent: 13pt;
text-align: justify;

}

@media screen and (max-width: 600px) {
    /* Mobile-friendly adjustments */
    header nav {
        flex-direction: column;
    }

    article {
        display: grid;
        gap: 1rem;
    }

    #chat-history {
        height: 150px;
    }
}