body {
    background-color: lightblue;
    
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
#container {
    display: flex;
    width: 100%;
    max-width: 800px;
    align-items: flex-start;
    position: relative;
}
#pirateImage {
    margin-right: 20px;
    cursor: pointer;
    visibility: visible; 
    position: relative;
}
#translator {
    flex-grow: 1;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}
button {
    padding: 10px 20px;
    background-color: navy;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: darkblue;
}
.checkbox {
    margin-bottom: 10px;
}
.speech-bubble {
    position: absolute;
    top: -50px;
    left: 50px;
    background-color: white;
    border: 2px solid black;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
}
.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: black;
    border-bottom: 0;
    margin-left: -10px;
}
