@import url('https://fonts.googleapis.com/css2?family=Georama:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


.formulario{
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle, #37505D, #15161B);
    background-size: 200% 200%;
    animation: moverCircular 80s linear infinite;
}
@keyframes moverCircular {
    0%   { background-position: 50% 0%; }
    25%  { background-position: 100% 50%; }
    50%  { background-position: 50% 100%; }
    75%  { background-position: 0% 50%; }
    100% { background-position: 50% 0%; }
}
a{
    align-self: center;
    width: 120px;

}
.logo-f{
    margin-top: 48px;
    width: 100%;
    height: auto;
}
.formulario p{
    font-family: "Georama";
    color: #eeeeee;
    align-self: center;
    font-size: 20px;
    width: 40%;
    text-align: center;
    font-weight: 400;
    line-height: 180%;
}
fieldset{
    display: block;
    max-width: 50%;
    align-self: center;
    border: none;
    margin: 0 auto;
}
.inline{
    width: unset;
    margin: 0 1em 0 0;
    vertical-align: middle;
}
label{
    font-family: "Roboto";
    font-size: 20px;
    color: #eeeeee;
    display: block;
    margin: 0.5rem 0;
}
input{
    margin: 10px 0 0 0;
    width: 100%;
    color: #eeeeee;
    min-height: 2em;
    font-family: "Roboto";
    font-size: 1rem;
    background-color: transparent;
    border: 1.5px solid #eeeeee;
    color: #eeeeee;
}
input[type="text"],
input[type="email"] {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px;
  border-radius: 4px;
}

input[type="text"]:-webkit-autofill,
input[type="email"]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #37505D inset;
  -webkit-text-fill-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
}
legend{
    padding-top: 20px;
    font-family: "Roboto";
    color: #eeeeee;
    font-size: 20px;
}
input[type="checkbox"]{
    width: 20px;
    height: 20px;
}
input[type="submit"]{
    cursor: pointer;
    letter-spacing: 5px;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    width: 10%;
    margin: 3em auto;
    height: 2em;
    font-size: 20px;
    border: 2px solid #eeeeee;
    border-radius: 5px;
    min-width: 300px;
    transition: color 0.3s ease;
    transition: background-color 0.3s ease;
}
input[type="submit"]:hover{
    background-color: #eeeeee;
    color: #15161B ;
}



@media(max-width: 1000px){
    .logo-f{
        max-width: 64px;
    }
    .formulario p{
        width: 100%;
        padding: 0 40px;
        font-size: 1.25rem;
    }
    fieldset{
        max-width: 100%;
        padding: 0 40px;
    }
}

@media(max-width: 500px){
    .logo-f{
        max-width: 48px;
    }
    .formulario p{
        width: 100%;
        padding: 0 16px;
        font-size: 1rem;
    }
    fieldset{
        max-width: 100%;

    }


}
/* Gracias */
.thank{
    background-color: #37505D;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
}
.mensaje {
    text-align: center;
  }
.mensaje h1{
    font-family: "Georama";
}
.mensaje p{
    margin-top: 20px;
    font-family: "Roboto";
}
.thank a{
    font-weight: 800;
    color: #eeeeee;
    text-decoration: none;
    text-transform: uppercase;
}
.thank a:hover{
    color: #54FCFF;
}
/* CV */

.cv-body{
    background: radial-gradient(circle, #D4D8DD, #AEB2B8);;
    animation: moverCircular 10s linear infinite;
    background-size: 200% 200%;
    height: 100vh;
    margin: 0;
    padding: 0 20%;
}
.bod{
    display: grid;
    grid-template-columns: 25% 1fr 25%;
    grid-template-rows: repeat(4, auto);
    gap: 10px;
    padding-bottom: 48px;
}
@keyframes moverCircular {
    0%   { background-position: 50% 0%; }
    25%  { background-position: 100% 50%; }
    50%  { background-position: 50% 100%; }
    75%  { background-position: 0% 50%; }
    100% { background-position: 50% 0%; }
}
.intro{
    border-radius: 0 0 16px 16px;
    background-color: rgba(34, 35, 34, 65%);
    backdrop-filter: blur(50px);               
    -webkit-backdrop-filter: blur(50px); 
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
    grid-column: 1/3;
    grid-row: 1;
    color: #eee; 
}
.intro h1{
    font-family: "Georama";
    font-size: 64px;
    margin-bottom: 32px;
}
.intro p{
    font-family: "Roboto";
    font-size: 1rem;
    font-style: italic;
    line-height: 130%;
}

.contacto{
    border-radius: 0 0 16px 16px;
    background-color: rgba(34, 35, 34, 65%);
    backdrop-filter: blur(50px);               
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    justify-items: center;
    align-items: center;
}
.contacto svg{
    width: 60px;
    height: auto;
}
.redes{
    width: 60px;
    height: 60px;
}
.redes path{
    fill: #eee;
    transition: fill .8s ease;
}
.redes:hover path{
    fill: #46c6ee;
}
.hab{
    border-radius: 16px;
    background-color: rgba(34, 35, 34, 65%);
    backdrop-filter: blur(50px);               
    -webkit-backdrop-filter: blur(50px); 
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #eee;
    grid-column: 2/4;
}
.tags{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hab h1{
    font-family: "Georama";
}
.hab span{
    border-radius: 4px;
    font-family: "Roboto";
    border: 1px solid #eee;
    padding: 4px;
    text-transform: capitalize;
}
.lan{
    border-radius: 16px;
    background-color: rgba(34, 35, 34, 65%);
    backdrop-filter: blur(50px);               
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    color: #eee;
    grid-column: 1/2;
    grid-row: 2;
}
.lan h1{
    font-family: "Georama";
}
.lan p{
    font-family: "Roboto";
    text-transform: capitalize;
}
.exp{
    grid-row: 3;
    grid-column: 1/4;
    border-radius: 16px;
    background-color: rgba(34, 35, 34, 65%);
    backdrop-filter: blur(50px);               
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    color: #eee;
}
.exp h1{
    font-family: "Georama";
    margin-bottom: 48px;
}
.exp h2{
    font-family: "Roboto";
    text-transform: uppercase;
}
.exp h3{
    font-family: "Roboto";
    font-style: italic;
    font-weight: 300;
    text-transform: uppercase;
}
.exp p{
    font-family: "Roboto";
    width: 70%;
    line-height: 120%;
}
.exp-item{
    margin-bottom: 48px;
}
.exp-item:last-of-type{
    margin-bottom: 0;
}
.edu{
    border-radius: 16px;
    background-color: rgba(34, 35, 34, 65%);
    backdrop-filter: blur(50px);               
    -webkit-backdrop-filter: blur(50px); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    grid-column: 1/4;
    color: #eee;
}
.edu h1{
    font-family: "Georama";
    margin-bottom: 48px;
}
.edu h2{
    font-family: "Roboto";
}
.edu p{
    font-family: "Roboto";
    
}
.pye{
    border-radius: 16px;
    background-color: rgba(34, 35, 34, 65%);
    backdrop-filter: blur(50px);               
    -webkit-backdrop-filter: blur(50px); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    grid-column: 1/4;
    color: #eee;
}
.pye h1{
    font-family: "Georama";
    margin-bottom: 48px;
}
.pye h2{
    font-family: "Roboto";
}
.pye p{
    font-family: "Roboto";
    width: 70%;
    line-height: 120%;
}
.pye-item{
    margin-bottom: 48px;
}
.pye-item:last-of-type{
    margin-bottom: 0;
}
@media (min-width: 1500px){
    .cv-body{
        padding: 0 25%;
    }
}
@media (min-width: 1000px) and (max-width: 1366px){
    .cv-body{
        padding: 0 10%;
    }
}
@media (min-width: 768px) and (max-width: 992px){
    .cv-body{
        padding: 0 5%;
    }
}
@media (max-width: 767px){
    .cv-body{
        padding: 0 16px;
    }
    .bod{
        display: flex;
        flex-direction: column;
    }
    .intro h1{
        text-align: center;
    }
    .contacto{
        border-radius: 16px;
        padding: 16px;
        display: flex;
        justify-content: space-around;
    }
    .exp{
        padding: 20px;
    }
    .exp p{
        width: 100%;
    }
    .edu{
        padding: 20px;
    }
    .pye{
        padding: 20px;
    }
    .pye p{
        width: 100%;
    }
}

