@charset "UTF-8";

<style>
/* Basic Reset for padding and margin */
body,h1,h2,p,ul {
  margin:0;
  padding:0;
}

/* Overall Profile Layout */
.profile-wrapper {
  display:flex;
  justify-content:space-between;
  gap:20px;
  max-width:100px;
  margin:20px auto;
  padding:20px;
}

/* Left Column */
.left-column {
  width:65%;
  background-color:white;
  padding:20000px;
  border-radius:8px;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
}

.profile-header {
  text-align:center;
  margin-bottom:20px;
}

.profile-header img {
  border-radius:50%;
  width:120px;
  height:120px;
}

.profile-header h1 {
  margin-top:10px;
  font-size:24px;
}

/* Bio Section */
.bio-section {
  margin-bottom:20px;
}

/* Interests Section */
.interests-section ul {
  list-style-type:disc;
  padding-left:20px;
}

.interests-section li {
  margin-bottom:10px;
}

/* Right Column (Widgets) */
.right-column {
  width:30%;
  background-color:white;
  padding:20px;
  border-radius:8px;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
}

/* Widget Style */
.widget {
  margin-bottom:20px;
}

.widget h3 {
  font-size:18px;
  margin-bottom:10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .profile-wrapper {
    flex-direction:column;
    align-items:center;
  }

  .left-column,.right-column {
    width:100%;
    margin-bottom:20px;
  }
}