body {
    background-color: #282a30;
    font-family: 'Poppins', sans-serif;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #282a30;
    color: #fff;
}

.header-item {
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
}

.header-item:first-child {
    margin-left: 20px;
}

.header-img {
    width: 100px;
    height: auto;
    margin-right: 20px;
}

.bubbles-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.bubble {
    width: 80%;
    padding: 20px;
    background-color: #282a30;
    color: white;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
}

.bubble-content {
    flex-grow: 1;
}

.bubble h2 {
    margin-top: 0;
}

.bubble p {
    margin-bottom: 0;
}

.bubble-img-left {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

.bubble-img-right {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 20px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #282a30;
    color: #fff;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-item {
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
}

.footer-item:last-child {
    margin-right: 0;
}

.rights {
    margin-top: 10px;
}