body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: black;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.content-box {
    background: black;
    color: white;
    border-radius: 10px;
    border: 1px solid #ffffff30;
    padding: 20px;
    margin: 10px 0;
    width: 90%; /* Responsive width */
    max-width: 400px; /* Maximum width */
}

.content-box h2 {
    margin-top: 0;
    height: 50px;
}

.content-box-text {
    height: 310px;
}


.content-box-title {
    height: 100px;
}

.content-box button {
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    background: white;
    color: black;
    cursor: pointer;
}

.content-box-button {
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    background: white;
    color: black;
    cursor: pointer;
    font-family: helvetica;
    text-decoration: none;
    width: 100px;
}

  .button-text {
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    background: white;
    color: black;
    cursor: pointer;
    font-family: helvetica;
    text-decoration: none;
    width: 100px;
}


.image-placeholder {
    max-width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Optional: if you want rounded corners */
    margin-bottom: 20px; /* Add some space between the image and the title */
    display: block;
}

/* Responsive design for tablets */
@media (min-width: 768px) {
    .content-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .content-box {
        margin: 10px;
    }
}

/* Responsive design for desktops */
@media (min-width: 1024px) {
    .content-box {
        max-width: 300px; /* Adjust size as needed */
    }
}


