body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f4f4f4;
    padding: 10px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    text-shadow: #333;
}

.logo img {
    height: 150px;
}

.animated-title {
    font-size: 24px;
    animation: colorChange 3s infinite alternate;
    text-shadow: #333;
    font-size: 400%;
}

@keyframes colorChange {
    0% { color: #A52A2A; }
    100% { color: #D2691E; }
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

main {
    padding: 20px;
}

.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.images img {
    width: 20%;
    margin: 10px 0;
}

.social-media {
    text-align: center;
    padding: 10px 0;
}

.social-media a img {
    height: 30px;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .images img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }
    
    .logo img {
        height: 40px;
    }

    .animated-title {
        font-size: 20px;
    }
}