body{
    background-color: rgb(255, 255, 255);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.navbar{
    background-color: #a595dd;
    height: 50px;
    text-align: center;
    padding: 10px;
}

.navbar .btn{
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 10px;
}

.navbar .btn:hover{
    color: #ffe65b;
}

.navbar .iniciar{
    background-color: #ffe65b;
    border: none;
    padding: 5px;
    color: black;
    border-radius: 10px;
    height: 40px;
    width: 100px;
    text-decoration: none;
}
H2{
    align-items: center;
    color: #a595dd;
}

.gal {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
}

.gal img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gal img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.content{
    flex: 1;
    align-items: center;
}
.footer{
    background-color: rgb(0, 0, 0);
    color: aliceblue;
    height: 100px;
    text-align: center;
    flex:1;
}
