@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    /* border: 2px solid red; */
    min-height: 200vh;
    background: #222;
}
a {    
    /* border: 2px solid olivedrab; */
    text-decoration:none;
}
section {
    /* border: 2px solid yellow; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f35906;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle(200px at left center);
    z-index: 2;
}
.title {
    /* border: 2px solid purple; */
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: #00a8ff;
    z-index: 1;
    font-size: 25vw;
}
.inner-title {    
    /* border: 2px solid green; */
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: #00a8ff;
    z-index: 1;
    font-size: 25vw;
    background-image: url(https://esin.systems/portafolio/cursos/robotica-arduino.jpg);
    background-attachment: fixed;
    /* background-size: cover; */
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
