@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600&display=swap');

*{
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Nunito', sans-serif;
    font-weight: 35px;
    background-color: black;

}

.container{
    display: flex;
}

.btn{
    text-decoration: none;
    padding: 20px 30px;
    font-size: 1.5rem;
    position: relative;
    margin: 5px;
    float: left;
    margin-top: auto;
}

.btn-1{
    background: #039be5 ;
    color: #ffffff;
    border-radius: 50px;
    transition: transform 0.3s ease;

}

.btn-1::after, .btn-1::before{
    content: "";
    position: absolute;
    opacity: 0.3;
    background: #039be5;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: transform 0.3s ease;
}

.btn-1:hover{
    transform: translate(-12px, -12);
}

.btn-1:hover::after{
    transform: translate(6px, 6px);
}

.btn-1:hover::before{
    transform: translate(6px, 6px);
}

.name{
    color: white;
    background-image:linear-gradient(to right, #039be5, white);
    width: 100%;
    height: 300px;
    transform: skewY(-5deg);
    margin-bottom: 100px;
}

.name .content{
    width: 50%;
    height: 50%;
    position: absolute;
    left: 25%;
}

.name .content .p-1{
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: bolder;
    font-size: 65px;
    transform: skewY(5deg);
    margin-bottom: 0;
}

.name .content .p-2{
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 35px;
    transform: skewY(5deg);
    margin-top: 0;
}

.info{
    width: 90%;
    height: auto;
    background: #039be5;
    margin: 5% auto;
    padding: 20px;
    border-radius: 60px;
}

.info .tituloseccion{
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: xx-large;
    text-align: center;
    font-weight: bolder;
    border-bottom: 2px #ffffff solid;
}

.info .tituloinfo{
    color: black;
    font-family: 'Nunito', sans-serif;
    font-weight: bolder;
    font-size: large;
    display: inline;
    margin-right: 10px;
}

.info .infoinfo{
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: normal;
    font-size: large;
    display: inline;
}

ul li{
    font-family: 'Nunito', sans-serif;  
    font-size: large;
    color: black;
    margin-left: 20px;
}

.name .img{
    position: absolute;
    top: 18%;
    right: 5%;
    width: 180px;
    height: 180px;
    border-radius: 100%;
    transform: skewY(5deg);
    overflow: hidden;
}

.name .img img{
    width: 180px;
    height: 180px;
}



{}