<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    background-color: #e1e1e1;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center; 
    background-color: white;
}

.container_text {
    text-align: center; 
    padding: 20px;
}

.container_img img {
    width: 400px; 
    height: auto; 
    margin-top: 20px; 
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
}

.container_img_2 img {
    width: 500px; 
    max-width: 100%; 
    height: auto; 
    margin-top: 20px; 
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
}

.container_text_2 h1,h4{
    text-align: center; 
    margin: 20px; 
    font-size: 20px;
}

.container_img img:hover{
    transform: scale(1.1);
}

.container_img_2 img:hover{
    transform: scale(1.1);
}

ul li {
    list-style-type: square;
    text-align: justify;
    margin: 10px;
    color: black;
}

h1 {
    color: #19a8e1;
}

h3{
    color: #da7426;
}

h4{
    color: #da7426;
    text-align: justify;
}

span{
    color: black;
    font-weight: bold;
}</pre></body></html>