body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background: url('Images/home/backdrop_no_title.png') no-repeat center center fixed;
    background-size: cover;
}

/* Hero Section  */
.hero-section {
    text-align: center;
    padding: 60px 20px;
}

.title-image {
    max-width: 50%; /* Make the title smaller */
    height: auto;
}

.profile-pic {
    display: block;
    margin: 10px auto 0 auto; /* Ensure it appears just below the title and centered */
    width: 150px;
    height: 150px;
    max-width: 30%;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

/* Links Section */
.links-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 60px 20px;
}

.art-link {
    display: inline-block;
    width: 150px;
    height: 50px;
    text-decoration: none;
    background: rgba(255,255,255,0.8);
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    font-size: 1.2em;
    color: #333;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.art-link:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #eee;
    text-align: center;
    font-size: 0.9em;
    padding: 10px;
}
