@charset "UTF-8";

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi Perfil en MyFreeCams</title>
<style>
body {
  font-family:Arial,sans-serif;
  margin:0;
  padding:0;
  background-color:#f0f0f0;
}

.container {
  max-width:800px;
  margin:20px auto;
  padding:20px;
  background-color:#fff;
  border-radius:10px;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}

h1 {
  text-align:center;
  color:#333;
}

p {
  line-height:1.6;
  color:#666;
  text-align:justify;
}

.profile-image {
  display:block;
  margin:0 auto;
  border-radius:50%;
  width:200px;
  height:200px;
  object-fit:cover;
  object-position:center;
}

.profile-section {
  margin-bottom:30px;
  padding-bottom:20px;
  border-bottom:1px solid #ccc;
}

.profile-section:last-child {
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}

.media-gallery {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}

.media-gallery img,.media-gallery video {
  max-width:100%;
  border-radius:5px;
  box-shadow:0 2px 4px rgba(0,0,0,0.1);
}

.contact-info {
  margin-top:20px;
  text-align:center;
}

.contact-info a {
  color:#007bff;
  text-decoration:none;
  font-weight:bold;
}

.contact-info a:hover {
  text-decoration:underline;
}