body {
    background-color: #000;
    color: cyan;
}

/* styles.css */
.container {
    display: flex;
    flex-direction: row;
    border: 1px solid #000;
    width: 400px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    background-color: black;
    color: white;
}

.avatar {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.avatar-border {
    border: 1px solid white; /* Add border to the images */
    margin: 5px;
}

.avatar img {
    max-width: 100%; /* Make sure the images fit within the container */
}

.info {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.info-text {
    margin-right: 10px; /* Add margin to the right of the text */
}

.info-date {
    margin-top: auto; /* Push the date to the bottom */
    padding: 10px;
    border-top: 1px solid white; /* Add border to the top of the date */
}

.border {
    border: 1px solid #000;
    margin: 5px 0;
}

.loading {
    width: 30%;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 5px;
}

.logo {
    position: absolute;
    left: 50px;
    top: -15px;
}