body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    background-color: #f4f4f4;
}

/* Página inicial */
.container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.perfil {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    margin-top: 10px;
}

.botao {
    display: inline-block;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.botao:hover {
    background: #218838;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.links a {
    padding: 10px;
    background: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.links a:hover {
    background: #0056b3;
}

/* Página do Álbum */
.titulo {
    margin-top: 20px;
}

.galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.galeria div {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 180px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.galeria div:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.galeria img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.galeria p {
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}
