body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    
}

.intro-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('ImagenesPortafolio/fondos/fondoPn_entrada22.png') no-repeat center center fixed;
    background-size: contain;
    position: relative;
    width: 100vw;
    overflow: hidden; /* Asegúrate de que el contenido no se desborde */
    text-align: center;
}

.intro-content{
    display: flex;
    flex-direction: column;
    text-align: center;
    position :absolute;
    align-items: center;
    padding: 5px;
    bottom: 50%;
    right: 37%;
    font-family:'Courier New', Courier, monospace;
    
}
.start-btn {
    border-radius: 20%;
    width: 12vw;
    height: 2vw;
    background-color: white;
    margin-top: 5%;
    color: rgb(11, 176, 28);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0,3s;
}
.start-btn:hover{
    background-color: black ;
    
}
.intro-text {
    color: rgb(11, 176, 28);
    line-height: 1.9 ;
    margin: 1px;
    font-size: 2vw;
}
.intro-text2{
    color: rgb(11, 176, 28);
    line-height: 1.9 ;
    margin: 1px;
    font-size: 2vw;
}
.intro-text3{
    color: rgb(11, 176, 28);
    line-height: 1.9 ;
    margin: 1px;
    font-size: 1vw;
}



@media (max-width: 868px) {
    .intro-text {
        color: rgb(11, 176, 28);
        font-family:'Courier New', Courier, monospace;
        line-height: 1.9 ;
        margin: 1px;
        font-size: 2vw;
    }
    .intro-text2{
        color: rgb(11, 176, 28);
        font-family:'Courier New', Courier, monospace;
        line-height: 1.9 ;
        margin: 1px;
        font-size: 2vw;
    }
    .intro-text3{
        color: rgb(11, 176, 28);
        font-family:'Courier New', Courier, monospace;
        line-height: 1.9 ;
        margin: 1px;
        font-size: 1vw;
    }

    .start-btn {
        border-radius: 20%;
        width: 12vw; 
        height: 3vw;   
        background-color: white;
        margin-top: 5%;
        color: rgb(11, 176, 28);
        font-weight: bold;
        font-size: 1vw;
        cursor: pointer;
    transition: background-color 0.3s, color 0,3s;
}
.start-btn:hover{
    background-color: black ;
    
}
}

@media (max-width: 480px) {
    .intro-text {
        font-size: 2vw; /* Ajusta el tamaño del texto para pantallas muy pequeñas */
    }

    .start-btn {
        width: 8vw; /* Ajusta el ancho del botón para pantallas muy pequeñas */
        height: 2vh; /* Ajusta la altura del botón para pantallas muy pequeñas */
        color: rgb(11, 176, 28);
        font-weight: bold;
        font-size: 1vw; 
        cursor: pointer;
        transition: background-color 0.3s, color 0,3s;
    }
    .start-btn:hover{
        background-color: black ;
        
    }
}



