/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
		.container {
			display: flex;
			flex-direction: row;
			height: 100%;
			width: 100%;
		}

		.image {
			flex: 1;
       background-image: url('https://lh4.googleusercontent.com/-92rCXusygR-SPkVici-8qBSHsT06Z_wHJy0atC_3c55dFnkoojGw_sqZMvsN3_T54o=w2400');
			background-size: cover;
			background-position: center center;
      min-width: 50%; /* Added to ensure the image takes up at least 50% of the screen */
		}

		.content {
			flex: 1;
			background-color: #ffffff;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			padding: 1rem;
		}

		.content h2 {
			  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
              font-weight: bold;
		}

		.content p {
			font-size: 1.2rem;
			margin-bottom: 1.5rem;
			text-align: center;
			max-width: 80%;
		}

		#my {
			background-color:#00004d;
			color: #ffffff;
			padding: 1rem 2rem;
			text-decoration: none;
			font-size: 1.2rem;
      font-weight: bold;
			border-radius: 10px;
			transition: all 0.6s ease-in-out;
		}

		#my:hover {
			background-color: #ffffff;
			color: black;
      border-right-style:solid;
      border-left-style:solid;
      font-weight: bolder;
      border-color: black;
		}
    @media screen and (min-width: 768px) {
    			.container {
    				flex-direction: row;
    				height: 100vh;
    			}

    			.image {
    				height: 100%;
    				width: 50%;
    			}

    			.content {
    				height: 100%;
    				width: 50%;
    				padding: 2rem;
    			}
        }

        @media screen and (max-width: 768px) {
              .container {
                /* flex-direct			background-image: url('image.png');ion: row; */
                height: 100vh;
              }

              .image {
                height: 40%;
                width: 50%;
              }

              .content {
                height: 40%;
                width: 50%;
                padding: 2rem;
              }
            }

/* Social media icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: #00004d;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  margin: 0 1rem;
  transition: all 0.4s ease-in-out;
  }

  .social-icons a:hover{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #00004d;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    margin: 0 1rem;
    transition: all 0.4s ease-in-out;
    }
