/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.pamoka {
    font-family: Arial, sans-serif;
    background-color: #121212e8;
    color: #cbd0d9;
    line-height: 1.6;
    padding: 20px;
}
/* MANO PRIDETA a spalva su hoveriu  visam body*/
a {
    color: #7f8897; /* Set the link color */
    text-decoration: none; /* Optional: removes the underline */
  }
  
  a:hover {
    color: #5f6877; /* Darker shade of #7f8897 */
  }
  

.container-pamoka {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: #121212e8;
    color: #cbd0d9;
    line-height: 1.6;
    padding: 20px;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; 
    /* MANO KEISTA, ATITRAUKIA DAINOS PAVADINIMA NUO VIRSUTINES LINIJOS 20PX */
}

.section.reverse {
    flex-direction: row-reverse;
}

.text-content {
    max-width: 50%;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f5f5f5;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.text-content .button:hover {
    background-color: #ff6347;
}

.image-content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
