@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow Semi Condensed", sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    draggable: false;
}

html,
body {
    overflow: hidden;
}

.experience {
    position: fixed;
    width: 100vw;
    height: 100vh;
}

/* Agrega estos estilos al CSS */
.overlay {
    position: fixed;
    top: 29%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 80%;
    max-width: 600px;
}

.content {
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.centered-image {
    max-width: 50px;
    height: auto;
    margin: 15px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: grayscale(70%);
    cursor: default;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}

.centered-image-two {
    width: 35%;
    height: auto;
    margin: 0px -10px;
    display: inline-block;
    user-select: none;
    transform: rotate(0deg);
    cursor: default;
}

.star{
  width: 100%;
}

/* Rotación específica para cada imagen */
.image-container img:nth-child(1) {
    transform: rotate(-5deg);
}

.image-container img:nth-child(2) {
    transform: rotate(0deg);
}

.image-container img:nth-child(3) {
    transform: rotate(5deg);
}

/* Medias queries existentes para .centered-image-two */
@media (max-width: 480px) {
    .centered-image-two {
        width: 30%;
        padding: 0 -10px;
    }
    
    .star{
        width: 70%;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .centered-image-two {
        width: 20%;
        padding: 0 -10px;
    }

    .star{
        width: 70%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .centered-image-two {
        width: 25%;
        padding: 0 -20px;
    }

    .star{
        width: 70%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .centered-image-two {
        width: 40%;
        padding: 0 -20px;
    }

    .star{
        width: 50%;
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .centered-image-two {
        width: 25%;
        padding: 0 -20px;
    }

    .star{
        width: 60%;
    }
}

@media (min-width: 1920px) {
    .centered-image-two {
        width: 30%;
        padding: 0 -20px;
    }

     .star{
        width: 70%;
    }
}

.text-block small {
    font-size: 1rem;
    margin: 0px 0;
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.7;
    user-select: none;
    cursor: default;
}

.text-block p {
    font-size: 3.2rem;
    margin: 0px 0;
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 900;
    letter-spacing: 0.5px;
    user-select: none;
    cursor: default;
}

/* Estilos para el pie de página */
.footer {
    position: fixed;
    bottom: 120px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1000;
    padding: 10px;
}

.footer-logo {
    width: auto;
    height: 30px;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    user-select: none;
    cursor: default;
}

.copyright-text {
    color: #ffffff;
    font-size: 0.8rem;
    margin: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .footer {
        bottom: 10px;
    }
    
    .footer-logo {
        height: 25px;
        margin-bottom: 5px;
    }
    
    .copyright-text {
        font-size: 0.7rem;
    }

    .text-block small {
        font-size: 0.8rem;    
    }
}