@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}
.content{
    width: 100vw;
    display: flex; 
    height: 100vh;
    align-items: center;
    flex-direction: column;
    background-color: #F1EEEE;
}
.perfil{
    width: 100%;
    display: flex;
    padding: 0.8em;
    align-items: center;
    flex-direction: column;
    border-bottom: solid 1px #CFC3C3;
}
.perfil > figure{
    width: 12em;
    height: 12em;
    border-radius: 50%;
    margin-bottom: 0.5em;
    background-size: 12em;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("https://i.imgur.com/aNnzSRb.jpg");
}
.perfil > figure:hover{
    transition: 2s all;
    box-shadow: 0px 7px 14px 0px rgba(66, 62, 64, 0.11), -5px 9px 13px -7px rgba(76, 73, 74, 0.42);
}
.perfil > span{
    font-size: 1em;
    font-style: normal;
    font-weight: lighter;
    margin-bottom: 0.5em;
    font-family: 'Roboto Condensed', sans-serif;
}
.perfil > figcaption{
    font-size: 2em;
    color: #272525;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 0.1em;
    font-family: 'Signika', sans-serif;
}
.perfil > p{
    font-size: 0.5em;
    font-style: normal;
    font-weight: lighter;
    margin-bottom: 0.5em;
    font-family: 'Roboto Condensed', sans-serif;
}
.form{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.form > span{
    width: 10em;
    margin: 1em;
    height: 3em;
    padding: 1em;
    cursor: pointer;
    color: #363333;
    text-align: center;
    border-radius: 1em;
    white-space: nowrap;
    font-weight: bolder;
    background-color: #CCCDC5;
    box-shadow: 0px 7px 14px 0px rgba(66, 62, 64, 0.11), -5px 9px 13px -7px rgba(76, 73, 74, 0.42);
}
.form > legend{
    padding: 1em;
    color: #272525;
    font-size: 1.5em;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    margin-bottom: 1.2em;
    font-family: 'Signika', sans-serif;
}
.form > p{
    margin: 0.5em;
    font-size: 1em;
    font-style: normal;
    font-weight: lighter;
    font-family: 'Roboto Condensed', sans-serif;
}
.form > input{
    outline: 0;
    width: 17em;
    padding: 1em;
    height: 3.5em;
    color: #363333;
    border-radius: 1em;
    border: solid 2px #CCCDC5;
    background-color: rgb(235, 234, 234);
    
}