@font-face {
    font-family: 'FS Joy';
    src: url('FSJoy-Regular.woff2') format('woff2'), url('FSJoy-Regular.woff') format('woff');
}

/* Estilo general del cuerpo */
body {
    margin: 0;
    padding: 0;
    font-family: 'FS Joy', sans-serif;
    background-image: url('MULTIMEDIA.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Títulos */
h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

/* Contenedor principal */
.airoh-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 1.5s ease-out;
}

/* Imagen de la moto */
.airoh-image {
    width: 80%;
    max-width: 2000px;
    border: 0px solid white;
    border-radius: 0px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.airoh-image:hover {
    transform: scale(1.05);
}

/* Botón de volver */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px;
    font-size: 1.2rem;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
}

.back-button:hover {
    background-color: darkorange;
}

.back-button::before {
    content: '← ';
}

/* Animaciones */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    body {
        overflow: auto; /* Para permitir scroll si es necesario */
    }

    h1 {
        font-size: 2rem;
    }

    .airoh-image {
        width: 100%;
        max-width: 90%; /* Más pequeño en pantallas móviles */
    }

    .back-button {
        font-size: 1rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .airoh-image {
        width: 100%;
        border-radius: 10px;
    }

    .back-button {
        top: 10px;
        left: 10px;
        font-size: 0.7rem;
    }