body {
    margin: 0px;
    background-color: #f5f5f5;
}

.header-container-pref {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: white;
}

.header-pref {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 16px 8px;
}

.serch-button {
    gap: 4px;
    background-color: #FC6A43;
    color: white;
    font-size: 14px;
    font-weight: 100;
    display: flex;
    flex-direction: row;
    border: 1px solid #FC6A43;
    border-radius: 4px;
    padding: 8px 34px;
    box-shadow: 0px 2px #bc4120;
    text-decoration: none;
}

.links-container-pref {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}

.links-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap:10px;
    width: 98%;
    margin-bottom: 20px;
}

.link-pref {
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 1px;
    box-shadow: 0px 3px 10px #e9e9e9;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #444444;
    font-size: 14px;
    font-weight: 600;
}

.title-link-pref {
    margin: 12px 0;
    font-weight: bold;
    color: #444444;
}

@media screen and (min-width: 780px) {
    .links-box {
        width: 90%;
    }
}