:root {
    --main-color: rgb(124, 231, 42);;
    --background-color: rgb(40, 35, 42);
    --footer-background-color: rgb(76, 75, 77);
    --footer-color: rgb(0, 0, 0);
}
* {
    background-color: var(--background-color);
    color: var(--main-color);
    margin: 0;
    padding: 0;
    font-size: 24px;
}
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* HEADER */
.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2% 2% 1%;
    background-color: var(--background-color);
}
.header-logo-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-logo-link {
    display: flex;
    align-content: center;
    margin-right: 5px;
}
.logo {
    fill: #7ce72a;
    transition: 0.5s;
}
.logo:hover {
    cursor: pointer;
    transition: 0.5s;
    fill: #3BAE00;
}
h1 {
    font-size: 0.5em;
}
/* FORM */
.form-search {
    display: flex;
    flex-direction: row;
    width: 50%;
    margin-right: 30px;
    padding-right: 10px;
    border-radius: 10px;
    border: #fff solid 2px;
    transition: 0.3s;
}
.form-search:hover {
    transition: 0.3s;
    box-shadow: 0 0 5px #7ce72a;
}
.input-search {
    width: 100%;
    padding: 5px 10px 5px;
    border-radius: 10px;
    border: 0;
    outline: none;
    font-size: 1em;
}
.glass-box {
    align-self: center;
    width: 30px;
    height: 30px;
}
.glass-box:hover {
    cursor: pointer;
}
.cross-box {
    align-self: center;
    width: 30px;
    height: 30px;
}
.cross-box:hover {
    cursor: pointer;
}
.cls-1 {
    fill:none;
    stroke:#7ce72a;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-width:2px;
}
/* LINER */
.liner {
    height: 1px;
    margin: 0.5% 2%;
    background-color: var(--main-color);
}
/* FOOTER */
.footer-container {
    display: flex;
    flex: 0 0 auto; /* flex-grow / flex-shrink / flex-basis - footer to bottom */
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1% 2%;
    background-color: var(--footer-background-color);
}
footer p {
    font-size: 0.5em;
    background-color: var(--footer-background-color);
    color: var(--background-color);
}
.link-github {
    font-size: 0.3em;
    text-decoration: none;
    background-color: var(--footer-background-color);
    color: var(--background-color);
    font-weight: bold;
    transition: 0.6s;
}
.link-github:hover {
    cursor: pointer;
    transition: 1s;
    color: var(--footer-color);
}
.link-rss {
    background-color: var(--footer-background-color);
    width: 2em;
}
.svg {
    fill: var(--background-color);
    background-color: var(--footer-background-color);
    transition: 0.6s;
}
.svg:hover {
    cursor: pointer;
    fill: var(--footer-color);
    transition: 1s;
}
/* MAIN */
.button-cross {
    display: block;
}
.button-search {
    display: block;
}
.main-container {
    display: flex;
    justify-content: center;
    flex: 1 0 auto; /* flex-grow / flex-shrink / flex-basis - footer to bottom */
}
.row-fotos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0.5% 2%;
}
.none-visible{
    display: none;
}
.img-apii {
    padding: 1%;
    height: 200px;
}
