@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;500&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to bottom right, #F5DB13,#F2B807);
    --nav-color:#F5DB13;/*rgb(44, 41, 118)*/
    --nav-color2:#F5DB13;/*rgba(43, 41, 118, 0.85)*/
}
a{
    text-decoration: none;
}

.nav{
    width: 100%;
    display: flex;
    position: fixed;
    justify-content: flex-start;
    font-family: 'Karla', sans-serif;
    align-items: center;
    background-color: var(--nav-color);
    color: black;
    z-index: 1000;
}
.nav .list-nav{
    top:51px;
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: var(--nav-color2);
    clip-path:polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path .5s  ease-in-out;
    justify-content: space-evenly;
}
.logo a img{
    width: 123px;
    height: 50px;
    padding: 5px 0px;
}
/*----------Diseño del main-------------*/
.main{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Karla', sans-serif;
}
.main > section{
    width: 100%;
    text-align: center;
    margin-top: 25px;
}
.main .text-main{
    margin: 0 auto;
    max-width: 1000px;
    padding: 5px;
}
.main .text-main .text-title{
    font-size: 25px;
    text-transform: uppercase;
}
.text-main .text-body{
    font-size: 18px;
}
.text-main .border{
    margin-bottom: 15px;
}
.main .body-img img{
    width: 100%;
    max-width: 790px;
    
}
.main .btn-index{
    width: 250px;
    font-family: 'Karla', sans-serif;
    background-color: rgb(245, 244, 244);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0px 4px 4px 0px rgba(39, 25, 25, 0.25);
}
.main .btn-index a{
    width: 100%;
    height: 100%;
    padding: 10px;
    display: block;
    color: black;
    border-radius: 50px;
    font-weight: bold;
    
}
.main .btn-index a:hover{
    background-color:white;
}

@media (min-width:320px){
    .main .text-main .text-title{
        font-size: 20px;
    }
    .text-main .text-body{
        font-size: 16px;
    }
}
@media (min-width:768px){
    .main .text-main .text-title{
        font-size: 25px;
    }
    .text-main .text-body{
        font-size: 25px;
    }
}
@media (min-width:1440px){
    .main{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-family: 'Karla', sans-serif;
    }
    .main .text-main .text-title{
        font-size: 30px;
    }
}