
body {
    
    background-image: url('arrasca.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    background-repeat: no-repeat; 
    
    font-family: Arial, sans-serif;
    color: #1c1e21;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}


.container {
    max-width: 680px;
    width: 100%;
    text-align: center;
    padding: 30px; 
    box-sizing: border-box;
    
    
    background-color: rgba(255, 255, 255, 0.9); 
    border-radius: 15px; 
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}


.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 30px;
}


.link-button {
    background-color: #ffffff;
    color: #1c1e21;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    display: block;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
}

.link-button:hover {
    transform: scale(1.02);
    border-color: #007bff;
}



.album-title {
    text-align: center;
    margin-bottom: 30px;
    
    background-color: rgba(255, 255, 255, 0.9); 
    border-radius: 10px;
    display: inline-block;
}


.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin-bottom: 30px;
}


.gallery-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 250px;
    text-align: center;
    padding-bottom: 10px;
    overflow: hidden; 
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    
}

.gallery-item p {
    margin: 10px 0 0 0;
    padding: 0 10px;
    font-size: 14px;
}


.back-link {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

.back-link:hover {
    background-color: #0056b3;
}