* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

header {
    width: 100%;
    max-width: 600px;
    padding: 30px;
    text-align: center;
}

h1 {
    font-size: 2rem;
    color: #4285f4;
}
h1 a{
    all: unset;
    display: inline;
    cursor: pointer;
}

form {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

input[type="text"], input[type="search"], select {
    width: 70%;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #357ae8;
}

aside{
    margin-bottom: 15px;
    padding: 10px;
    text-align: center;
}

main {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.search-results {
    margin-bottom: 20px;
}

.result {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
}

.result img {
    width: 40px;
    height: 40px;
    border: 1px #aaa solid;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    top: -200px;
}

.result-info {
    flex: 1;
}

.result-url {
    font-size: 0.9rem;
    color: #006621;
    text-decoration: none;
}

.result-title {
    font-size: 1.2rem;
    color: #1a0dab;
    margin: 5px 0;
}

.result-title a{
    all: unset;
    cursor: pointer;
}

.result-title a:hover{
    text-decoration: underline;
}

.result-description {
    font-size: 1rem;
    color: #545454;
}

.ad-space{
    margin: 60px 0px;
}

.people-also-search-for {
    margin-bottom: 20px;
}

.people-also-search-for h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.people-also-search-for ul {
    list-style-type: disc;
    padding-left: 20px;
}

.people-also-search-for li {
    margin-bottom: 5px;
}

.people-also-search-for p{
    margin-left: 15px;
}

.people-also-search-for a {
    font-size: 1rem;
    color: #1a0dab;
    text-decoration: none;
}

.people-also-search-for a:hover {
    text-decoration: underline;
}

footer {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}

.pagination {
    margin-bottom: 40px;
}

.pagination a {
    margin: 0 15px;
    text-decoration: none;
    color: #4285f4;
}

.pagination a:hover {
    text-decoration: underline;
}

.footer-info{
    padding: 15px;
    color: #f8f9fa;
    background-color: #555;
}

.footer-info a{
    all: unset;
    cursor: pointer;
    color: #f8f9fa;
}

.footer-info a:hover{
    text-decoration: underline;
}
