@media (max-width: 667px) and (orientation: portrait){
    body{
        font-size: 1.4rem;
        line-height: 1.5rem;
    }
    .btn{
        border: solid #538136 1.2px;
    }
    .container{
        width: 90%;
        display: flex;
        flex-direction: column;
    }
    header{
        margin-top: 4rem;
        margin-bottom: -.1rem;
        width: 100%;
        height: max-content;
    }
    main{
        background-color: #A5D08D;
        width: 100%;
        padding-bottom: 2rem;
    }
    main .nombre{
        width: 90%;
        height: 14vh;
        position: fixed;
        top: 0;
        margin-top: 0;
        text-align: center;
    }
    .nombre h1{
        font-size: 1.8rem;
        padding: 1.5rem 0 .9rem 0;
    }
    .nombre h2{
        font-size: 1.3rem;
    }
    .datos__container{
        display: flex;
        flex-direction: column;
    }
    .experiencia__card h3{
        font-size: 1.2rem;
    }
    .experiencia__p{
        margin: .5rem 0;
        padding: .5rem 1.5rem;
    }
}

@media (orientation: landscape){
    header{
        height: 280vh;
    }
    
    .nombre h1{
        font-size: 2.5rem;
        padding: 2rem 0;
    }
    
}