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

#image {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    margin-left: 20px; 
    margin-right: 20px;
    margin-bottom: 20px;
}

#main_text {
    padding-top: 40px;
    text-align: left;
    max-width: 50%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #000; /* Change text color to black for better contrast */
    font-size: 1.2em;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
}

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

#title {
    text-align: left;
    width: 100%;
    align-self: flex-start;
    font-family: 'Arial Black', sans-serif;
    font-size: 2em;
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
}

.padding {
    padding-top: 50px;
}

.previous_work {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
}

.other_link {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 1.2em;
    color: #fff;
    background-color: #2c3e50;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.other_link:hover {
    background-color: #000;
    transform: scale(1.05);
}

/* Media query for smaller screens */
@media (max-width: 900px) {
    .content-container {
        flex-direction: column;
    }

    .container {
        flex-direction: column;
    }

    #main_text {
        text-align: center;
        max-width: 100%;
    }

    #image {
        max-width: 100%;
    }
}