:root {
    --darkest-color: #2f2a30;
    --dark-color: #95181c;
    --light-color: #bca65b;
    --lightest-color: #f7ddc7;
    --medium-color: #666f14;
}

a {
    color: #cec7ad;
    text-decoration: none;
}

a:hover {
    color: #bca65b;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #bcb6a0c1;
    font-size: 1.1rem;
    padding: 3rem 0 1rem 0;
    background-image: url(assets/asset-harita.webp);
    background-size: cover;
}

#home {
    position: fixed;
    top: 0.7rem;
    left: 0.9rem;
    color: #2f2a30;
    text-shadow: #95181c 1px 1px;
    font-size: 1rem;
    background-image: radial-gradient(rgb(245, 234, 212), transparent);
}

a#home {
    color: #2f2a30;
}

.wrapper {
    width: min(30rem, 90vw);
}

.logo {
    width: calc(92% + 5px);
    position: relative;
    bottom: -1rem;
}

main {
    border: #bca65b 3px solid;
    padding: 5% 5%;
    background-color:#412630 ;
    width: 82%;
}

ul {
    list-style-type: none;
    position: relative;
}

ul::after {
    content: '';
    position: absolute;
    inset: 0 0 1.3rem 1.3rem;
    border: #7b6344 2px solid;
    border-style: none none none solid;
    pointer-events: none;
}

li:last-child::before {
    content: '';
    position: absolute;
    width: 2rem;
    left: -2rem;
    height: 100%;
    background-color: #412630;
    z-index: 1;
}

li {
    position: relative;
}

li::after {
    content: '';
    width: 0.6rem;
    height: 0.7rem;
    border-radius:0 0 0 70%;
    border: #7b6344 2px solid;
    border-style: none none solid solid;
    left: -1.2rem;
    top: 0rem;
    display: block;
    position: absolute;
    z-index: 2;
    
}

