body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient( #a0bacc, #08546c, #022534);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
margin: 0;
padding: 0;
color: #333;
/* Warna teks default */
}
.container {
max-width: 600px;
margin: 20px auto;
background-color: rgba(255,255,255,0.691);
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
position: relative;
animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.profile-img {
text-align: center;
margin-bottom: 20px;
}
.profile-img img {
width: 150px;
height: 150px;
border-radius: 50%;
border: 5px solid #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.profile-info {
text-align: center;
margin-bottom: 30px;
}
.profile-info h1 {
margin-bottom: 10px;
font-size: 28px;
font-weight: bold;
color: #333;
}
.profile-info p {
margin-bottom: 10px;
font-size: 16px;
line-height: 1.6;
color: #666;
}
.gallery {
text-align: center;
margin-top: 30px;
justify-content: center;
}
.gallery img {
width: 120px;
height: 68px;
border-radius: 10px;
margin: 5px;
transition: transform 0.3s ease-in-out;
object-fit: cover;
/* Mempertahankan proporsi aspek 16:9 */
cursor: pointer;
}
.gallery img:hover {
transform: scale(1.1);
}
.modal {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
/* Efek blur pada latar belakang */
}
.modal-content {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.modal-img {
max-width: 80%;
max-height: 80%;
}
.modal-img img {
width: 100%;
height: auto;
}
.connect-with-me {
text-align: center;
margin-top: 30px;
}
.connect-with-me h3 {
margin-bottom: 15px;
font-weight: bold;
color: #333;
}
.connect-with-me p {
margin: 0;
}
.connect-with-me a {
margin-right: 5px;
display: inline-block;
transition: transform 0.3s ease;
/* Menambahkan jarak antara ikon */
}
.connect-with-me img {
margin-bottom: 10px;
/* Menambahkan jarak antara ikon dan teks */
transition: transform 0.3s ease-in-out;
}
.connect-with-me img:hover {
transform: scale(1.2);
}
.clear {
clear: both;
}
.clear {
clear: both;
}


.navigator {
display: flex;
justify-content: space-around;
margin-bottom: 15px;
}
.navigator a {
text-decoration: none;
color: #333;
font-weight: bold;
font-size: 20px;
cursor: pointer;
transition: color 0.3s ease;
}
.navigator a:hover {
color: #666;
}
body {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Old versions of Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}