*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
}

header{
    height: 60px;
    background-color:#2f2f8349;
    text-align: center;
    font-size: large;
    font-size: 1.5rem;

}
.cabeça{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;  
    margin-left: 50px;
}
nav .link{
    color: white;
    transition: all 0.5 s;
    text-decoration: underline;
}
 nav .link:hover{ 
    transform: scale(1.2);
 }
body{
    font-family: 'Times New Roman', Times, serif;
    color: white;
    font-weight: 500;
    background-color: #01011e;
    text-align: center;
}
li{
    list-style: none;
}
h1{
    margin: 5px;
}
a{
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

a:hover{
    font-weight: bold;
}
.container{
    display: flex;
}
.navbar{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}
.gallery{ 
    width: 70vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    
}
.btn-more{
    color: rgb(245, 245, 245);
    font-weight: bold;
}
.photo-gallery{
    text-align: center;
}
.photo-gallery-container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.gallery-item{
    flex: 1 0 calc(33% - 5px);
    max-width: calc(33% - 5px);
    height: 250px;
    overflow: hidden;
}
.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wide{
    flex: 1 0 calc(30% - 5px);
    height: 250px;
    max-width: calc(30% - 5px);
}
.gallery-item:hover img{
    transform: scale(1.15);
    transition: 1s;
    cursor: pointer;
}
.btn-load{
    background-color: gray;
    padding: 10px 20px;
    margin-top: 20px;
    color: white;
    border: none;
    cursor: pointer;
}
footer{
    font-size:0.4rem ;
    background-color:#191970;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    text-align: center;
    justify-content: end;
}
footer p{
    font-size: 0.9rem
}
footer p img{
    height:15px;
    width: 15px;
}
.menorfooder{
    font-size:small
}