.homepage-container {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping of flex items */
}

.left-column {
    width: 50%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 5px;
	margin-top: 0; /* Ensures both columns start at the same vertical position */
}

.right-column {
    width: 50%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	margin-top: 0; /* Ensures both columns start at the same vertical position */
}




/* Responsive design for mobile devices */
@media (max-width: 768px) { /* Adjust the max-width as needed for your design */
    .homepage-container {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
    }
}



.left-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0; /* Remove default margin from the list */
}

.left-column li {
    background-color: #f4f4f4;
    margin-bottom: 10px;
    padding: 20px;
    border: 1px solid #ddd;
}

.tweet {
    border: 1px solid #ddd;
    margin-bottom: 15px;
    background-color: #f4f4f4;
    padding: 10px;
    clear: both;
}

.profile-pic {
    width: 75px; /* Adjust size as needed */
    height: 75px; /* Adjust size as needed */
    border-radius: 50%; /* Circular profile pictures */
    margin-right: 10px;
    float: left;
    margin-top: 15px; /* Adjust this to align the profile photo */
}

.twitter-tweet {
    display: inline-block;
    width: calc(100% - 3%); /* Adjust percentage based on desired margin */
    margin-left: 2%;
    margin-right: 1%;
	padding-bottom: 4%;
}

.twitter-tweet p {
    margin: 0;
    padding: 0;
	margin-top: 20px; /* Adjust this to align the text with the profile photo */
}

.twitter-tweet a {
    color: #1DA1F2; /* Twitter blue */
    text-decoration: none;
}

.twitter-tweet a:hover {
    text-decoration: underline;
}

.upper {
  padding: 20px 0 0 0; /* Top padding of 10px, others 0 */
  margin: 0; 
  text-align: center; /* Center-aligns text horizontally */
}

.responsive-image {
  background-image: url('https://sgtsurge.com/images/homepage-banner-950.jpg'); /* Default image for desktop */
  height: 325px; /* Fixed height */
  background-size: cover; /* Ensures the image covers the full container */
  background-position: center; /* Centers the image in the container */
}

@media screen and (max-width: 768px) {
  .responsive-image {
  background-image: url('https://sgtsurge.com/images/mobile.jpg'); /* Image for mobile devices */
  height: 50vh; /* Height relative to the viewport height */
  background-size: cover;
  background-position: center;

  }
}
