* {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

header > nav {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 10vh;
    align-items: center; 
    background-color: rgba(182, 140, 89, 0.6);
    backdrop-filter: blur(20px);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

header > nav > div {
    height: 10vh;
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

header > nav > div > a {
    height: 10vh;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: 0.3s;
    padding: 0px 2rem;
}

header > nav > div > a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

header > nav > a > img {
    max-width: 8rem;
    align-self: flex-end;
    padding-left: 2rem;
    height: auto;
}

main{
    background-color: burlywood;
}

.atracoes > .imagens{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    flex-wrap: wrap;
}
.atracoes > h1{
    text-align: center;
    margin: 8px;
}
.atracoes > .imagens > figure > a {
    text-decoration: none;
    color: inherit;
}
.atracoes > .imagens > figure > a > img{
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}
.atracoes > .imagens > figure > a:hover,
.atracoes > .imagens > figure > a:focus {
    text-decoration: none;
}
.atracoes > .imagens > figure > a > figcaption {
    text-align: center;
    font-size: 20px;
    font-family: 'Croissant One';
    color: #000;
}

footer{
    font-size: 8pt;
    text-align: end;
    padding: 5px;
    background-color: rgb(182, 140, 89);
}