body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #e6d4c0;  /* világos barna háttér */
    color: #4a3a2c;            /* barnás betűszín */
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: #f6ede5;      /* nagyon világos barna háttérblokk */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #3a2d22;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-list li {
    font-size: 18px;
    margin-bottom: 12px;
}

.project-list .label {
    font-weight: bold;
    font-size: 19px;
    margin-right: 5px;
    color: #3a2d22;
}

.container p {
    text-align: justify;  
    font-size: 18px;
    line-height: 1.6;
    color: #4a3a2c;
}

.back-home {
    position: fixed;
    bottom: 20px;
    left: 20px;

    background: linear-gradient(135deg, #8b5a2b, #b87333); /* barna árnyalatok */
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.back-home:hover {
    background: linear-gradient(135deg, #9c6b3c, #cc8650); /* világosabb barna árnyalat */
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.back-home:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.fixed-image {
    position: fixed;
    top: 20px;          
    right: 20px;        
    width: 200px;       
    z-index: 9999;      
    pointer-events: none; 
}
