*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Arial";
   
}

header{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2%;
    background-color:rgb(3, 3, 15);
}

header div.galeria{
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
}

header div.galeria div.single-galeria{
    position: relative;
    width: 20%;
    height: 100%;
    margin: 0 5px;
    transition: width 1s;
}

header div.galeria div.single-galeria:hover {
    transform: scale(1.0);
    transition: transform 0.1s ease;
}
header div.galeria div.single-galeria:hover{
    transform: scale(1.0,1.0);
}

header div.galeria div.single-galeria:first-child{
    width: 20% !important;
}

header div.galeria:hover div.single-galeria:first-child{
    width: 30% !important;
}

header div.galeria div.single-galeria:hover{
    width: 35% !important;
}

header div.galeria div.single-galeria:first-child:hover{
    width: 30% !important;
}


header div.galeria div.single-galeria img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header div.galeria div.single-galeria div.info{
    position: absolute;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 65%, transparent);
    padding: 16% 8%;
    bottom: 0;
}
/*cores do texto imagens*/
header div.galeria div.single-galeria div.info h1{
    font-size: 26px;
    color: white;
}

header div.galeria div.single-galeria div.info p{
    font-size: 14px;
    line-height: 28px;
    color: rgb(252, 247, 247);
}
/*até aqui*/
header div.galeria div.single-galeria div.info a{
    font-size: 14px;
    line-height: 28px;
    color: gold;
    text-decoration: none;
}

header div.galeria div.single-galeria div.info a:hover{
    text-decoration: underline;
}

footer{
    position: fixed;
    background-color:rgb(3, 3, 15);
    clear: both;
    border-top: 1px solid #c7c6c6; 
    position: inherit;
    color: white;
    bottom: 0;
    width: 100%;
    padding: 5px;
    text-align: center;
  }
  footer p,a {
    margin-top: auto;
    color: white;
    margin-left: 0.2em;
    color: var(--white);
    text-decoration: none;
  }