
body{
    background-color: rgb(175, 120, 120);
}

ul {
    list-style-type: none; /* Pašalina visus ženklelius */
    padding-left: 0; /* Pašalina standartinį įtraukimą */
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    margin: 5px 0;
    background-color: #06a049;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #0daa12;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.responsive-img {
    max-width: 100%;  /* Neleidžia paveikslėliui būti didesniam už tėvinį elementą */
    height: auto;     /* Išlaiko proporcijas */
    display: block;   /* Pašalina papildomus tarpus apačioje */
    margin: 0 auto;   /* Centruoja paveikslėlį */
}
