body {
    box-sizing: border-box;
    background-color: #FBF1DB;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    margin: 0 120px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
}

.search {
    display: flex;
}

.search input {
    width: 240px;
    padding: 4px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.search button {
    font-weight: 600;
    color: #42361D;
    background-color: #D9B384;
    padding: 4px;
    border: none;
    border-radius: 0 4px 4px 0;
}

nav ul {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

ul { 
    list-style: none; 
    padding-left: 5px; 
}

a { 
    margin-bottom: 8px;
    font-weight: 600;
    color: #828C37;  
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.content {
    max-width: 1220px;
    margin: auto;
    grid-gap: 3rem;
    display: grid;
    gap: 3rem;
    grid-template-areas: "sidebar main anchors";
    grid-template-columns: minmax(0,15rem) minmax(0,2.5fr) minmax(0,15rem);
    padding-left: 1rem;
    padding-right: 1rem;
}

.anchors {
    border-left: solid 1px #42361D;
    padding-left: 15px;
}

.anchors-list li {
    font-size: 16px;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 24px;
}

.img-stardew {
    width: 240px;
}

.img-map {
    width: 560px;
    border: solid 4px #42361D;
    border-radius: 16px;
}

.infos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100px;
    border-top: solid 1px #42361D;
    margin-bottom: 24px;
}

.footer-text {
    margin: 0px 400px;    
    font-weight: 500;
    font-size: 12px;
}

.sidebar {
    border-right: solid 1px #42361D;
}

figure {
    text-align: center;
}