body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #000;
    overflow-x: hidden;
}

header {
    background: url('/images/kendoarmenia.jpg') center/cover no-repeat;
    color: white;
    padding: 50px 20px;
    animation: fadeIn 2s ease-in-out;
}

li {
    text-decoration: none;
}

a {
    color: #0077cc;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
}

    a:hover {
        font-size: 1em;
        text-decoration: wavy;
    }

#mapa {
    background: url('/images/Coliseosur.png') center/cover no-repeat;
}

    #mapa a {
        display: block;
        width: 100%;
        height: 100%;
    }

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    width: 80%;
}

.info, .agenda, .agenda2, .interes, .contacto, .patrocinadores {
    background: white;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-in-out;
    flex: 1 1 45%;
}

.agenda {
    background: url('/images/kendo001.jpg') center/cover no-repeat;
    color: white;
    padding-top: 20px;
    font-size: 1.25em;
	border: solid rgba(255, 255, 255, 0.7) 1px;
}

.agenda2 {
    background: url('/images/kendo002.jpg') center/cover no-repeat;
    color: white;
    padding-top: 20px;
    font-size: 1.25em;
	border: solid rgba(255, 255, 255, 0.7) 1px;
}

.agenda strong, .agenda2 strong{
	color: #ff6615;
}

.contacto {
	background: url('/images/kendoarmenia.jpg') center/cover no-repeat;
    padding-top: 50px;
    font-size: 1.25em;
}

.contacto div {
	margin-top: 5px;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
}

.contacto ul {
	text-align: left;
}

.map {            
    width: 100%;
    height: 300px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
}

.patrocinadores-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

    .patrocinadores-logos img {
        max-width: 100px;
        height: auto;
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

        .patrocinadores-logos img:hover {
            transform: scale(1.1);
        }

footer {
    background-color: #222;
    color: white;
    padding: 10px;
    margin-top: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
    animation: fadeIn 2s ease-in-out;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
    }

    .info, .agenda, .interes, .contacto, .patrocinadores {
        flex: 1 1 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}