@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@1,800&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
.contenedor{
    margin: auto;
    background-color: #212529;
    text-align: center;
}
header{
    background-color: #212529;
    min-height: 80px;
    width:100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
}
.header{
    width: 80%;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
a{
    text-decoration: none;
}
i{
    font-family:arial;
    font-style: bold;
    color: #495057;
}
i:hover{
    color:white;
}
header h2:hover{
    color:white;
    -webkit-text-stroke: 0px;
}
h2{
    font-family: 'Roboto Condensed', sans-serif;
    font-style: bold, italic;
    color: white;
    letter-spacing: -1px;
    color: transparent;
    -webkit-text-stroke: .4px white;
        font-size: 35px;
}
.yo{
    width:10%;
    border-radius: 100%;
    border: 6px solid #868e96;
    margin-bottom: 15px;
}
nav{
    min-height: 50px;
    width: 100%;
    display: flex;
    padding: 0px 30px;
    justify-content: space-between;
    align-items: center;
}
nav a{
    color:white;
    font-family: arial;
    padding: 5 10px;
    background-color: transparent;
    border-radius: 5px;
    text-decoration: none;
}
nav a:hover{
    background: linear-gradient(30deg, #DFF01A, #EC87C2);
    border: 0px;
    color:#212529;
}
li{
    list-style: none;
}
h4{
    font-family: 'Roboto Condensed', sans-serif;
    font-style: bold, italic;
    font-size: 24px;
    color:white;
    margin-bottom: 20px;
}
img{
    margin-top: 30px;
}
#boton{
    margin:auto;
    max-width: 100px;
    background: linear-gradient(30deg, #DFF01A, #EC87C2);
    padding: 5px 20px;
    box-shadow: 0px 0px 2px;
    border-radius: 30px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    animation: rotateback .5s linear infinite;
}
#boton:hover{
    background-color: #495057; 
}
#boton a{
    font-family:arial, bold;
    font-size: 15px;
    color:white;
    text-decoration: none;
}
#boton a:hover{
    color:#212529;
}

footer{
    text-align: center;
    padding:10px;
    background: linear-gradient(30deg, #DFF01A, #EC87C2);
    animation: rotateback .5s linear infinite;
    color: #343a40;
    font-size:12px;
    font-style: regular;
    font-family: 'Roboto Condensed', sans-serif;
    display: flex;
        align-items: center;
    margin-top: 40px;
}
.figma{
    display: flex;
    padding:20px;
    justify-content: space-around;
    flex-wrap: wrap;
    height: 100%;
    position: relative;
}
iframe{
    width: 50%;
    height: auto;
    max-height:500px;
    max-width: 500px;
    border: solid 3px #e64980;
    display: inline-block;
}
@keyframes rotateback{
    50%{
       background: linear-gradient(30deg, #DFF01A, #EC87C2); 
    }
    100%{
       background: linear-gradient(30deg, #EC87C2,#DFF01A); 
    }
}
@media screen and (max-width:600px){
    
	header h2{
      font-size: 23px;
    }
    nav a{
        font-size: 12px;
    }
    footer{
        font-size: 10px;
    }
    .yo{
      border: 3px solid #868e96;  
    }
    
}@media screen and (min-width:720px){
    footer{
        height:50px;
    }
   
    
}
@media screen and (min-width:600px){
    header{
        flex-direction: row;
        padding: 10px;
    }
     .yo{
        display: none;
    }
}