* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

a {
    text-decoration: none;
}

body {
    background-color: #F8F8F8;
    background-image: url(../images/arrows.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.content_wrapper {
    padding: 30px 10px 10px;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
    width: 100%;
    justify-content: space-between;
    height: 100vh;
}

h1 {
 text-align: center;
 margin-bottom: 15px;
}

.bread_crumps {
    max-width: 600px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 14px;
    color: gray;
    width: 100%;
}

.back {
    display: none;
    margin-bottom: 20px;
}

.keyword_link {
    font-weight: 700;
    background-color: #ffffff;
    border-radius: 25px; 
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 20px;
    padding-bottom: 50px;
    padding-left: 13px;
    padding-right: 13px;
    padding-top: 50px;
    color: #000;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.104);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.104);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.104);
    width: 100%;
    margin: 20px auto;
    max-width: 600px; 
    display: flex;
    align-items: baseline;
    justify-content: center;
}

 
.footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
}

.footer p,
.footer a {
    color: gray;
    font-size: 14px;
}

.search_results {
    max-width: 700px;
    margin: auto;
}

.result_item:not(:first-child) {
    margin-top: 30px;
}

.result_item p {
    color: gray;
    font-size: 14px;
    margin: 10px 0;
}

.result_button {
    border: 1px solid gray;
    padding: 5px;
    margin-top: 10px;
    display: block;
    max-width: 115px;
    text-align: center;
}

@media(max-width:767px) {
    .content_wrapper {
        width: 90%;
    }

    h1 {
        font-size: 28px;
    }

    .keyword_link {
        text-align: center;
        font-size: 20px;
            padding-bottom: 30px;  
            padding-top: 30px;
    }
}