@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');

body{
    font-family: 'Raleway', sans-serif;
    background: #000000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0f9b0f, #000000);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0f9b0f, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.contenedor-logo{
    display: grid;
    width: 50%;
    justify-items: center;
    align-items: center;  
}
.logo {
    align-items: center; 
}
.logo__img{
    width: 120%;
    height: 120%;
    padding: 20px 60px 20px 0;
}

.contenedor{
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: center;
    align-items: center;
}

.contenedor-textos{
    text-align: center;
    width: 85%;
    height: 100%;
    color: #fff;
}
.subtituloB{
    font-size: 30px;
    font-weight: 500;
    margin: 20px;
}
.subtituloA{
    font-size: 35px;
    font-weight: 700;
    color: #ccff33;

}
.ilustraciones{
    width: 60%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center; 
    position: relative;
}
.img{
    text-align: center;
}
.blob{
    position: absolute;
    z-index: -1; 
    justify-content: center;
    align-items: center;
    right: -10px;
    width: 120%;
} 
.ilustraciones :nth-child(1){
    width: 120%;
}
.img{
    animation: imgAnimate ease-in 1s infinite alternate;
}
@keyframes imgAnimate{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.04);
    }
}
.contacto{
   width: 60%;
   margin: 20px auto;
   justify-content: center;
   margin-top: 10px;
   display: inline-block;
}
.parrafo__contactame{
    color: #ccff33;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 27px;
}
.fab{
    display: inline-block;
    width: 90px;
    height: 90px;
    color: #88eb17;
    padding: 5px;
    text-align: center;
    background: #004b23;
    /* border: 2px solid #88eb17; */
    box-shadow: 0 0 7px 5px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 70px;
    position: relative;
}

.fab:hover{
    background: #0f9b0f85;
    color: #ffffff;
    font-size: 70px;
    box-shadow: 0 0 7px 5px rgba(0, 0, 0, 0.514);
}
@media screen and (max-width: 800px){
    .contenedor{
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
    .contenedor-logo{
        grid-template-columns: 1fr;
        width: 100%;
    }
    .ilustraciones{
        width: 60%;
        height: 60%;
        padding-top: 60px;
    }
    .blob{
        width: 75%;
        right: 17%;
    } 
    .ilustraciones :nth-child(1){
        width: 75%;
    }

}

@media screen and (max-width: 500px){
    .contenedor{
        row-gap: 10px;
    }
    .logo__img{
        width: 90%;
        height: 90%;
        padding: 20px;
        margin-left: 15px;  
    }
    .subtituloB{
        font-size: 20px;
    }
    .subtituloA{
        font-size: 25px;
    }
    .parrafo__contactame{
        font-size: 25px;
    }
    .ilustraciones{
        padding-top: 20px;
    }
    .blob{
        width: 80%;
       left: 2%;
        
    } 
    .ilustraciones :nth-child(1){
        width: 80%;
    }
}
