 body {
            background: #121212;
            color: white;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 100vh;
            margin: 0;
        }

.profile-container {
	background: #1e1e1e;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(231, 76, 60, 0.7);
	text-align: center;
	width: 90%;
	max-width: 500px;
	margin: 25px;
}           
.profile-pic {
           width: 150px;
           height: 150px;
           object-fit: cover;
           border-radius: 50%;
           border: 3px solid gray;
           margin-top: 10px;
        }

   h2 {
	       color: #ec1e09;
	       border-bottom: 2px solid gray;
	       padding-bottom: 5px;
	       margin-top: 10px;
}
   .album {
           margin-top: 20px;
           padding: 10px;
           background: #333;
           display: flex;
           flex-wrap: wrap;
           justify-content: center;
           gap: 10px;
           border-radius: 10px;
           border: 3px solid gray;
           box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
           width: 90%;
           max-width: 600px;
        }

   .album-img {
	       width: 100px;
	       height: 100px;
	       object-fit: cover;
	       transition: transform 0.3s ease;
	       border: 2px solid #80808000;
	       border-radius: 5px;
	       color: #80808000;
}
   .album-img:hover {
          transform: scale(1.5);
}

  .login-link {
            margin-top: 20px;
}

  .login-link a {
           color: #e74c3c;
           text-decoration: none;
           font-weight: bold;
           border: 2px solid #e74c3c;
           padding: 10px 20px;
           border-radius: 5px;
           transition: background 0.3s, color 0.3s;
}

  .login-link a:hover {
           background: #e74c3c;
           color: white;
}
