@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

body {
    background-color: #3F3558;
}

button {
    border: 0px;
    padding: 23px;
    border-radius: 15px;
    font-size: 16px;
    margin: 5px;
    color: white;
    transition: 0.5s;
    background-color: #43346B;
}

button:hover {
    background-color: rgb(83, 65, 133);
    cursor: pointer;
}

section#filters {
    text-align: center;
}

header img#title-logo {
    width: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    cursor: pointer;
}

header img#title-bg {
    position: absolute;
}

div#container {
    display: block;
    margin: 30px auto 50px auto;
    width: 100%;
    height: auto;
    border-radius: 30px;
    background-color: #352856;
}

div#title-text {
    font: 13px 'Lato', sans-serif ;
    color: #D8DBE2;
    text-align: center;
    padding-top: 8px;
}

div#gallery {
    position: relative;
    /* background-color: green; */
    width: 98%;
    height: 100%;
    display: block;
    margin: auto auto;
    column-count: 8;
    padding-bottom: 10px;
}

div#gallery {
    position: relative;
    /* background-color: green; */
    width: 98%;
    height: 100%;
    display: block;
    margin: auto auto;
    column-count: 8;
    padding-bottom: 10px;
    animation: 3s softHeigth;
}

div#gallery img {
    display: block;
    padding-top: 10px;
    max-width: 100%;
    border-radius: 30px;
    animation: 3s ease-out 0s 1 opacity;
}

@media screen and (max-width: 1200px) {
    div#gallery {
        column-count: 4;
    }
    header img#title-logo {
        width: 55%;
    }
}

@media screen and (max-width: 650px) {
    div#gallery {
        column-count: 2;
    }
    header img#title-logo {
        width: 100%;
    }
}

@keyframes opacity {
    0% {
      opacity: 0%;
    }
    100% {
      opacity: 100%;
    }
  }

@keyframes softHeigth {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}


