/* Styling untuk halaman index.html */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

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

.header {
    background-color: #04756a;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.header-content h1 {
    margin-top: 15px;
    font-size: 2.8em;
    font-weight: bold;
    letter-spacing: 1px;
}

.header-content p {
    font-size: 1.2em;
    opacity: 0.9;
}

.header-foto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.header-foto:hover {
    transform: scale(1.05);
}

.header-contact span {
    display: inline-block;
    margin: 0 15px;
    font-size: 0.95em;
    color: #e0e0e0;
}

.header-contact i {
    margin-right: 5px;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
}

section h2 {
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
}

table {
    width: 100%;
    margin-top: 15px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: bold;
}

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

.portofolio-image {
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.2s ease;
}

.portofolio-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.hubungi-saya ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-github a {
    color: #04756a;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

.footer-github a:hover {
    color: #0056b3;
}


