:root {
    --background-color: #f0f0f0;
    --text-color: #333;
    --link-color: #1DA1F2;
    --link-hover-color: #0d8dd8;
}

body {
    font-family: 'Spartan', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.profile-container {
    background: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 800px; /* Adjust max-width for responsiveness */
    box-sizing: border-box;
    margin-top: 20px;
}

.profile-header {
    margin-bottom: 20px;
}
.published {
  text-align: left;
  margin-bottom: 20px;
}
.profile-container h3 {
  text-align: left;
  margin-bottom: 10px;
}
.quantum-computer {
  height: 180px;
  width: 300px;
}
.quantum-computer-image {
  height: 190px;
  width: 340px;
}
.profile-container p {
    text-align: left;
    font-size: 16px;
    margin-bottom: 10px;
}
.image-container {
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
}

.image-container img {
    width: 340px;
    height: 190px;
    aspect-ratio: 1 / 1; /* Ensures the image maintains a 1:1 aspect ratio */
    object-fit: cover; /* Makes sure the image covers the container */


}
.logic-gates::before {
    content: "•";
    font-weight: bold;
    color: #000;
    font-size: 20px;
    padding-right: 03px;
}

.logic-gates {
    font-weight: normal;
    margin-left: 20px;
    color: #333;
}
.caption {
    margin-top: 13px;
    font-size: 11px;
    color: #555;
}
.source {
    font-style: italic; 
    margin-top: 20px;  
}
.footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: var(--background-color);
    color: var(--text-color);
    width: 100%;
    box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
    .profile-container {
        width: 100%; /* Full width on smaller screens */
        padding: 10px; /* Adjust padding for smaller screens */
    }
}