*
{
    margin: 0%;
    padding: 0%;
}
.answers
{
    display: none;
    margin: 1%;
}
.answers .what_searched
{
    font-size: 150%;
    margin: 1%;
}
.answers .separate
{
    padding: 1%;
    margin: 1%;
    background-color: #FDC7EA;
    border-radius: 10px;
}
.answers .separate a
{
    text-decoration: none;
    height: 100%;
    width: 100%;
}
.answers .separate a .title
{
    font-size: 150%;
    color: #FF00C7;
}
.answers .separate a .subtitle
{
    font-size: 100%;
    color: black;
}
.opening
{
    background-image: url("../img/banner.jpg");
    background-size: cover;
}
.opening .filter
{
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%;
}
.opening .filter .center
{
    width: 70%;
    text-align: center;
}
.opening .filter .center .image
{
    width: 50%;
    margin-left: 25%;
}
.opening .filter .center .image img
{
    width: 100%;
}
.opening .filter .center .search_bar
{
    display: flex;
    justify-content: center;
}
.opening .filter .center .search_bar button
{
    width: 10%;
    background-color: rgba(255,255,255,0.1);
    border: none;
    padding: 1%;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
.opening .filter .center .search_bar button img
{
    width: 100%;
}
.opening .filter .center .search_bar input
{
    outline: none;
    color: white;
    background-color: rgba(255,255,255,0.1);
    padding: 3%;
    border: none;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    font-size: 150%;
}
.navs
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 5%;
}
.navs a
{
    width: 30%;
    height: 300px;
    background-size: cover;
    text-decoration: none;
    margin: 1%;
}
.navs a .topic
{
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    font-size: 300%;
}
#fitness
{
    background-image: url("../img/fitness.jpg");
}
#beauty
{
    background-image: url("../img/beauty.jpg");
}
#lifestyle
{
    background-image: url("../img/lifestyle.jpg");
}
#relationship
{
    background-image: url("../img/relationship.jpg");
}
@media(max-width:786px)
{   
    .opening .filter .center .search_bar input
    {
        font-size: 100%;
    }
    .navs a
    {
        height: 200px;
    }   
    .navs a .topic
    {
        font-size: 200%;
    }
}
@media(max-width:602px)
{
    .opening .filter .center .search_bar input
    {
        font-size: 100%;
    }
    .navs a
    {
        height: 150px;
    }   
    .navs a .topic
    {
        font-size: 150%;
    }
}
@media(max-width:441px)
{
    .opening .filter .center .search_bar input
    {
        font-size: 70%;
    }
    .navs a
    {
        height: 100px;
        width: 100%;
    }   
    .navs a .topic
    {
        font-size: 100%;
    }
}
@media(max-width:343px)
{
    .opening .filter .center .search_bar input
    {
        font-size: 50%;
    }
}