Samara Kurami Portfolio
body {
background-color: #0d1117;
color: #c9d1d9;
line-height: 1.6;
}
/* Navigation */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 50px;
background-color: #161b22;
}
header h1 {
color: #00ffff;
font-size: 24px;
}
header ul {
display: flex;
list-style: none;
}
header ul li {
margin: 0 15px;
}
header ul li a {
color: #c9d1d9;
text-decoration: none;
font-size: 16px;
transition: color 0.3s;
}
header ul li a:hover {
color: #00ffff;
}
/* Intro Section */
.intro {
display: flex;
align-items: center;
justify-content: space-between;
padding: 50px;
}
.intro .content {
max-width: 50%;
}
.intro h2 {
font-size: 32px;
color: #00ffff;
}
.intro h1 {
font-size: 48px;
margin: 10px 0;
}
.intro h3 {
font-size: 24px;
margin-bottom: 20px;
}
.intro h3 .highlight {
color: #00ffff;
}
.intro p {
font-size: 18px;
margin-bottom: 20px;
}
.buttons .btn {
display: inline-block;
background-color: #00ffff;
color: #0d1117;
padding: 10px 20px;
border-radius: 25px;
text-decoration: none;
font-size: 16px;
transition: background-color 0.3s;
}
.buttons .btn:hover {
background-color: #008b8b;
}
/* Profile Picture */
.profile-picture {
position: relative;
width: 250px;
height: 250px;
border-radius: 50%;
background: radial-gradient(circle, #00ffff, #161b22);
display: flex;
justify-content: center;
align-items: center;
}
.profile-picture img {
width: 90%;
height: 90%;
border-radius: 50%;
border: 5px solid #161b22;
}
/* Social Icons */
.social-icons {
margin-top: 20px;
}
.social-icons a {
margin-right: 10px;
color: #c9d1d9;
font-size: 20px;
transition: color 0.3s;
}
.social-icons a:hover {
color: #00ffff;
}
</style>