@font-face {
    font-family: 'Urban';
    src: url('urban.woff') format('woff'),
         url('urban.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: black;
    color: white;
    font-family: 'Urban', Arial, sans-serif; /* Utilizando a fonte Urban como principal */
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: black;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

.gallery {
    padding: 20px 0;
}

.albums {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.album {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.album img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.album .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album:hover {
    transform: scale(1.05);
}

.album:hover img {
    transform: scale(1.1);
}

.album:hover .overlay {
    opacity: 1;
}

.album .overlay h3 {
    margin: 0;
    font-size: 1.5em;
    text-align: center;
    color: white;
}
