@charset "UTF-8";

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyFreeCams Profile</title>
<style>
body {
  font-family:Arial,sans-serif;
  background:linear-gradient(135deg,#ff7e5f,#feb47b);
/* Gradient background */
  color:#333;
  margin:0;
  padding:0;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}

header {
  background-color:rgba(0,0,0,0.7);
  color:white;
  text-align:center;
  padding:20px;
  width:100%;
  position:absolute;
  top:0;
  left:0;
}

.profile-container {
  display:flex;
  justify-content:center;
  margin-top:100px;
/* Adjusted to prevent overlap with header */
}

.profile-info {
  background-color:white;
  padding:30px;
  border-radius:15px;
  box-shadow:0 8px 15px rgba(0,0,0,0.1);
  width:300px;
  text-align:center;
}

.profile-info img {
  width:100%;
  border-radius:50%;
}

.profile-info h2 {
  margin-top:15px;
}

.bio {
  font-size:14px;
  color:#666;
  margin-top:10px;
}

.actions {
  margin-top:20px;
}

.button {
  padding:12px 25px;
  background-color:#ff7e5f;
/* Matching the background gradient */
  color:white;
  border:none;
  border-radius:5px;
  cursor:pointer;
  text-decoration:none;
  margin-top:10px;
}

.button:hover {
  background:url(https://imgur.com/a/cF65m9U) no-repeat center center fixed;
  background-size:cover;
}