*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
}
.container .galery-container{
    width: 100%;
    margin: auto;
}
body{
    background-color: black;
    overflow-x: hidden;
    height: 100%;
}
header{
    background-color: black;
}
.header{
    display: flex;
    margin-top: 40px;
    padding-bottom: 40px;
    border-bottom: 3px solid orange;
    justify-content: center;
    align-items: center;
}
.logo{
    margin-left: 0px;
}
.lupa{
    margin-left: -42px;
    margin-top: 2px;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}
#inp{
    width: 400px;
    height: 50px;
    border-radius: 25px;
    outline: none;
    box-sizing: border-box;
    padding: 8px 12px;
    border: 2px solid #DDDDDD;
    font-size: 20px;
    transition: all 0.30s ease-in-out;
    cursor: pointer;
}
input[type='text']:focus {
    border:1px solid orange;
    box-shadow:0 0 15px orange;
}
.cleare{
    border: none;
    outline: none;
    background: transparent;
    position: relative;
    right: 77px;
    margin-top: 5px;
    z-index: 1;
   cursor: pointer;
}
.photos{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}
.gallery-img{
    height: 214px;
    margin-top: 15px;
    background-position: center;
    background-size: cover;
    border-radius: 2px;
    cursor: pointer; 
}
.gallery-img.close{
    display: none;
}
.year{
    color: white;
    font-size: 40px;
    font-family: 'Forum', sans-serif;
}
.footer{
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 50px;
    align-items: center;
}
