@import url('https://fonts.googleapis.com/css2?family=Delicious+Handrawn&family=Montserrat:wght@300;400;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

*{
    padding: 0;
    margin: 0;    
}

:root{
    --main-color: #165874;
}

html{
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    color:black;
}

a{
    text-decoration: none;
    cursor: pointer;
    color:var(--main-color);
}

a:hover{
    color:yellowgreen;
}

P{
    font-size: 16px;
    line-height: 25px;
}

h1{
    color: white;
    text-align: center;
    font-size: 50px;
}

/* CABECERA */
section#proyecto{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
}

section#proyecto div#cabecera{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    width: 100%;
    background-color: var(--main-color);
    height:42vh;
}

section#proyecto div#cabecera h1{
    border-bottom: 2px solid yellowgreen;
    padding: 70px 10px 10px;
}

section#proyecto div#cabecera h2{
    width: 40%;
    color:white;
    text-align: center;
    font-size: larger;
    font-weight: 400;
    padding: 50px 0 20px 0;
}

section#proyecto div#preview{
    width: 50%;
    background-color: rgba(187, 220, 247, 0.397);
    border-radius: 20px;
    transform: translateY(-100px);
    height: auto;
}

section#proyecto div#preview img{
    width: 100%;
}

/* DESCRIPCION */
section#descripcion{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

section#descripcion div#contenedor{
    display: flex;
    justify-content: center;
    align-items: start;
    width: 50%;
}

section#descripcion div#contenedor div#descripcion-proyecto{
    width: 70%;
    padding: 15px 0 15px 15px;
}

section#descripcion div#contenedor div#descripcion-proyecto h3{
    padding-bottom: 8px;
    border-bottom: 2px solid yellowgreen;
}

section#descripcion div#contenedor div#datos-proyecto{
    width: 30%;
    padding: 15px;
    margin-left: 15px;
    border-left: 2px solid yellowgreen;
}

section#descripcion div#contenedor p{
    width: 100%;
    padding-top: 8px;
    padding-bottom: 25px;
}

section#descripcion div#contenedor img{
    width: 100%;
}

section#descripcion div#contenedor a:hover img{
    opacity: 0.6;
}

.logos-programas{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    margin-bottom: 25px;
}

.logos-programas img{
    width: 45% !important;
    margin: 10px 10px;
    border-radius: 20px;
}

/* ENLACES PROYECTO */
section#enlaces-proyecto{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    margin: 0 0 80px 0;
}

section#enlaces-proyecto a{
    background-color: var(--main-color);
    border: 2px solid white;
    color:white;
    font-weight: 700;
    padding: 15px;
}

section#enlaces-proyecto a:hover{
    background-color: white;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}


/* CONTACTO */
section#contacto{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-top: 30px;
}

section#contacto h2{
    color: var(--main-color);
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

section#contacto h2 i{
    color: yellowgreen;
    margin-right: 15px;
    text-align: center;
    font-size: 40px;
}

section#contacto p{
    width: 50%;
    color:black;
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 40px;
}

section#contacto a{
    background-color: white;
    color: var(--main-color);
    border:2px solid var(--main-color);
    font-size: 20px;
    font-weight: 700;
    padding: 20px;
}

section#contacto a:hover{
    background-color: var(--main-color);
    color: white;
}

/* FOOTER */
footer{
    width: 100%;
    margin-top: 70px;
    padding: 20px 0;
    background-color: var(--main-color);
}

footer div#contenedor-footer{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-wrap: wrap;
}

footer div{
    color:white;
    font-size: 20px;
    text-align: center;
}

footer div a{
    color:white;
}

footer div i{
    padding-left: 10px;
}

/* TECNOLOGIAS */

.t_html{
    display: inline-block;
    margin:5px 0 0 0;
    padding:5px;
    background-color: rgb(236, 114, 0);
    color:white;
}

.t_css{
    display: inline-block;
    margin:5px 0 0 0;
    padding:5px;
    background-color: rgb(0, 132, 255);
    color:white;
}

.t_js{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: rgb(228, 213, 0);
    color:rgb(0, 0, 0);
}

.t_php{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #777bb3;
    color:white;
}

.t_sql{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #ff4800;
    color:white;
}

.t_tailwind{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #18beff;
    color:white;    
}

.t_ga4{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #ffa32b;
    color:white;   
}

.t_tagmanager{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #00a7e9;
    color:white;    
}

.t_supermetrics{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #d60000;
    color:white;    
}

.t_spreadsheet{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #007c29;
    color:white;    
}

.t_lookerstudio{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #007aaa;
    color:white;    
}

.t_indesign{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #aa0080;
    color:white;      
}

.t_photoshop{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #0180c9;
    color:white;      
}

.t_powerpoint{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #ff0000;
    color:white;      
}

.t_mdirector{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #ffd900;
    color:rgb(0, 0, 0);   
}

.t_mailchimp{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #b8a436;
    color:rgb(255, 255, 255);   
}

.t_acumbamail{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #d4d4d4;
    color:rgb(0, 0, 0);   
}

.t_vscode{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #00b7ff;
    color:rgb(255, 255, 255);   
}

.t_illustrator{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #ff8800;
    color:rgb(255, 255, 255);   
}

.t_searchconsole{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #d4d4d4;
    color:rgb(0, 0, 0);   
}

.t_semrush{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #ff7b00;
    color:rgb(255, 255, 255);   
}

.t_trends{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #696969;
    color:rgb(255, 255, 255);   
}

.t_frog{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #88cb00;
    color:rgb(255, 255, 255);   
}

.t_planner{
    display: inline-block;
    margin:5px 0 0 0;    
    padding:5px;
    background-color: #b1b1b1;
    color:rgb(0, 0, 0);   
}