@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@200&family=Lora:wght@500;700&family=Montserrat:wght@300;400;500;700&display=swap');

:root {
  --ff-1: 'Crimson Pro', serif;
  --ff-2: 'Lora', serif;
  --ff-3: 'Montserrat', sans-serif;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
 background: #181719;
 color: white;
 padding: 45px 75px;
 padding-bottom: 0;
 font-family: var(--ff-2);
 min-height: calc(100vh - (30px + 58.4px));
}
img{
    width: 100%;
}
.nav{
    display: flex;
    justify-content: space-between;
}

.nav .logo{
    padding: .3125rem;
    border: .125rem solid white;
    display: inline;
    font-size: .875rem;
    font-family: var(--ff-1);
}
.nav ul{
    display: inline;
}
.nav .icono{
    display: none;
}
.nav ul li{
    cursor: pointer;
    display: inline;
    font-size: 1.125rem;
    margin-left: 5.375rem;
    font-family: var(--ff-3);
}
.nav ul li:nth-child(1){
    padding-bottom: 4px;
    border-bottom: 2px solid white;
}
.nav .menu .cerrarMenu{
    display: none;
}

.container{
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.container .img{
    position: relative;
}
.container .texto h1{
    font-size: 3rem;
    margin-bottom: 2.8125rem;
    font-weight: 500;
}
.container .texto p{
    margin-bottom: 2.8125rem;
    font-size: 1.5em;
    font-family: var(--ff-3);
    width: 80%;
}
.container .texto button{
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    background: none;
    border: none;
    color: white;
}
.container .texto i{
    margin-left: .6875rem;
}
.container .info {
    position: absolute;
    left: 60%;
    top: 100%;
    transform: translate(-50%, -50%);
    background: #181719;
    padding: 1.4375rem 1.625rem;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.container .info .info2{
    font-size: 24px;
    margin-top: 11px;
    font-weight: 700;
    width: 250px;
}
.container .info .profile{
    display: flex;
    font-family: var(--ff-3);
    align-items: center;
}
.container .info  .profile .datos{
    margin-left: 1.25rem;
}
.container .info .profile .nombre{
    font-size: .875rem;    
    margin-bottom: 4px;
}
.container .info .profile .profesion{
    font-size: .75rem;
    color: #828282;
}
.container .info .profile .info2{
    font-size: 1.5rem;
}
.container .info .imagen2{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.container .info .imagen2 img{
    border-radius: 50%;
}
footer{
    margin-top: 100px;
    padding: 20px;
    text-align: center;
    position: relative;
    font-size: 14px;
    color: #A9A9A9;
    
}
footer a{
    color: rgb(210, 210, 210);
}
footer a:hover{
    color: white;
}
@media screen and (max-width: 1490px) {
    
    .container .info {
        left: 50%;
        top: 100%;
        transform: translate(-50%, -50%);
    }
  }
@media screen and (max-width: 1087px) {
    .container{
        margin-top: 70px;
        display: block;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    .container .img{
        margin-top: 2em;
    }
}
@media screen and (max-width: 896px) {
    body{
        padding: 15px 15px;
        padding-bottom: 0;
    }
    .nav .menu{
        z-index: 5;
        background: #181719;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav .menu .cerrarMenu{
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
    }
    .nav .menu ul {

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .nav .menu ul li{
        text-align: center;
        display: block;
        margin: 0;
        margin-bottom: 2rem;
        font-size: 18px;
        
    }
    .nav button{
        background: none;
        border: none;
        color: white;
    }
    .nav .icono{
        display: block;
    }
    .nav .none{
        display: none;
    }
    .container{
        margin-top: 2.375rem;
    }
    .container .img .imagen1{
        width: 100%;
    }
    .container .info {
        padding: .90rem .9375rem;
    }
    .container .texto h1{
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    .container .texto p{
        font-size: .875rem;
        
        margin-bottom: 1.5rem;
    }
    .container .texto button{
        font-size: .875rem;
    }
    .container .info .profile .nombre{
        font-size: .625rem;
    }
    .container .info .profile .profesion{
        font-size: .625rem;
    }
    .container .info .info2{
        font-size: 1.125rem;
    }
    
}