* {

margin: 0;
padding: ;
list-style: none;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;

}

.head {
width: 85vw;
max-width: 1000px;
min-width: 320px;
margin: auto;
}

img {
width: 100%;
border-radius: 25px;
box-shadow: 0px 3px 5px rgba(15, 15, 15, .5);

}

section {
    width: 100%;
    height: 80px;
    background-color: #9c1947;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;

}

.logo {
font-size: 20px;
font-weight: bold;
color: white;
padding: 100px;

}

.bars {
display: none;

}

.nav-bar ul {
display: flex;

}

.nav-bar ul li a {
display: block;
color: white;
font-size: 17px;
padding: 10px 15px;
border-radius: 5px;
transition: 0.2s;
margin: 0 5px;

}

.nav-bar ul li a:hover {
color: grey;
background-color: white;

}

.nav-bar ul li a:active {
color: grey;
background-color: white;
}

@media(max-width:900px) {

header {
padding: 0 10px;

}

section {
padding: 0px 50px;

}

.bars {
display: block;
cursor: pointer;

}

.bars .line{
width: 30px;
height: 3px;
background-color: white;
margin: 6px 3px;
}  

.nav-bar {
height: 0px;
position: absolute;
top: 150px;
left: 0px;
right: 0;
width: 100vw;
background-color: #9c1947;
transition: 0.5s;
overflow: hidden;

}

.nav-bar ul {
display: block;
width: fit-content;
margin: 80px auto 0 auto;
text-align: center;
transition: 0.5s;
opacity: 50;

}

.nav-bar.active {
height: 450px;

}

.nav-bar ul li a {
margin-bottom: 20px;

}

}

h1 {
    color: aqua;
    text-shadow: 1px 2px 2px black, 0 0 5px blue ;
    text-align: center;
}

div.galeria {
    margin: 10px 20px;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgb(0,0,0,0.19);
    float: left;
    width: 350px;

}

div.galeria img {
    width: 100%;
    height: auto;

}

div.galeria:hover {
    border: 1px silid lightcoral;
    transform: rotate(-3deg);

}

div.pie {
    text-align: center;
    text-shadow: 2px 2px 5px purple;
    padding: 10px;
}


.footer {
width: 100%;
height: auto;
background-color: #a71246;
color: rgb(95, 24, 24);
margin-top: 3900px;

}

.foot {
text-align: center;
padding: 40px;
margin: 0px;

}


