body {
    margin: 0;
    padding: 20px 40px;
    font-family: Arial, sans-serif;
    color: white;
    background-color: rgb(86, 65, 168);
}

.info-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px; 
}

.info-left {
    flex: 1;
}

h1 {
    font-size: 50px;
    margin: 30px 0 10px 0; 
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

h3 {
    font-size: 20px;
    margin: 5px 0 20px 0;
    font-weight: normal;
    color: #ddd;
}

a {
    color: white;
    text-decoration: none;
    font-size: inherit;
}

a:hover {
    color: white;
    text-decoration: underline;
}

ul {
    list-style: disc inside;
    margin-left: 20px;
    padding: 0;
}

li {
    margin-bottom: 6px;
}

footer {
    color: white;
    text-align: right;
    font-size: 17px;
    background-color: black;
    border-top: 1px solid darkgray;
    padding: 10px;
}

#foto img {
    width: 100%;
    max-width: 350px; 
    border-radius: 10px;
}

@media (max-width: 768px) {
    body { padding: 20px; }
    .info-container { flex-direction: column; align-items: center; }
    #foto img { max-width: 80%; }
    footer { text-align: center; font-size: 14px; }
}


