body {
    background-color: #555;
}

h1 {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 20px;
}


.profile-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px;
}

.profile-image {
    width: 250px; 
    height: 350px; 
    border-radius: 50%; 
    margin-left: 200px; 
}

.profile-text {
    max-width: 400px;
    font-size: 30px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: white;
    background-color: #333;
    margin-right: 200px;

}

.profile-text p {
    margin: 0;
}




.boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin: 3em 0;
  }
  
.box {
    background-color: #fff;
    padding: 1.5em;
    border-radius: 5px;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15);
  }

.boxes1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin: 3em 0;
    
  }
.box1 {
    background-color: #fff;
    padding: 1.5em;
    border-radius: 5px;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15);
    font-size: 20px;
  }

main {
    grid-column: 2 / -2;
  }
  
  #wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 960px 1fr;
  }


    .social-media-box {
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15);
        margin: 20px 0;
        max-width: 300px; /* Adjusted max-width for a square box */
        margin: auto; /* Center the box */
    }
    
    .social-media-box h2 {
        color: #333;
        text-align: center;
        font-size: 20px;
    }
    
    .social-links {
        display: flex;
        justify-content: space-around;
        margin-top: 10px;
    }
    
    .social-links a {
        text-decoration: none;
        color: #555;
        font-size: 16px;
    }