You are on page 1of 7

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    /*background: linear-gradient(180deg, rgba(255,255,255,1) 0%,
rgba(0,86,110,1) 100%);*/
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%,
rgba(97,0,110,1) 100%);
    width: 100%;
   
}

header {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
   /* background: linear-gradient(180deg, rgba(209,16,209,1) 0%,
rgba(0,153,194,1) 100%);*/
}

header  i.menu {
    display: none;
}

header nav {
    height: 10%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
}

nav .simbol {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30%;
    margin: 0 5% 0 ;
}
header .simbol-mobile {
    display: none;
}

nav a {
    text-decoration: none;
    padding: 15px 5px;
    color: rgba(0, 0, 0, 0.5);
}

nav #boton {
    border: 2px solid rgba(255, 255, 255, 0.425);
    border-radius: 5%;
}

header .presentacion {
    height: 80%;
   
    width: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: space-between;
    align-items: baseline;

.presentacion .bloque-presentacion {
    margin: auto;
    text-align: center;
}

.bloque-presentacion h1 {
    line-height: 2;
    width: 100%;
    display: block;
    position: relative;
}

.bloque-presentacion img {
    border-radius: 50%;
    box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.74);
}

.presentacion .pais {
    display: block;
    /*border: solid 1px black;*/
    height: 20px;
    width: 200px;
    margin: 0 0 10px 20px;
}
main {
    width: 100%;
    height: 100vh;
    padding: 5%;
    box-shadow: 0 0 20px 1px black;
    /*background: linear-gradient(180deg, rgba(16,176,209,1) 0%,
rgba(0,0,0,1) 100%);*/
}
main .sobre-mi {
    display: flex;
    width: 100%;
    height: 100%;
}
.sobre-mi .imagen{
    width: 35%;
    border-right: 1px solid black;
    margin: 0 5% 0 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imagen img{
    width: 95%;
    border-radius: 20px;
}
.discover .descripcion {
    color:rgb(199, 199, 199);
    margin: 0px;
}
.descripcion h5{
    line-height: 1.5;
}
.sobre-mi .discover {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10% 0 ;
    justify-content: space-around;
}
.discover .info-detallada {
    display: flex;
    border: 2.5px solid rgb(0, 0, 0);
    justify-content: space-between;
    font-size: 15px;
    height: 200px;
    align-items: stretch;
    border-radius: 5px;
}
.info-detallada .info-bloque-uno, .info-detallada .info-bloque-dos{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 50%;
    color:white;
}
.info-detallada .bloq p {
    margin: 0 0px 0 5px ;
   
}
.discover button{
    width: 120px;
    height: 30px;
    color: white;
    background-color: transparent;
    border-color: black;
}
footer{
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
footer .final-uno{
    color: rgba(95, 95, 95, 0.8);
}
footer .final-dos{
    width: 100%;

}
.final-dos .proyectos {
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: space-around;

}
.proyectos .proyecto{
    width: 30%;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
}
footer .final-tres{
    color:white;
    width: 100%;
    text-align: center;
    margin:0 0 10px 0;
}
.final-tres i{
    padding: 0 10px;
}
.final-tres i:hover{
    color: rgb(111, 0, 255);
}
@media (max-width: 500px){

header nav {
   
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 10%;
    left: 100%;
    width: 100%;
    transition: left 0.5s ease-in-out;
    background: linear-gradient(180deg, rgba(122,0,255,1) 0%,
rgba(255,255,255,1) 100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    height: 390.5px;
    z-index: 5;
    border-radius: 10px;
}
header .simbol-mobile{
    display: block;
    position: absolute;
    left: 20px;
    top: 10px;
}
nav .simbol{
    display: none;
   
}
nav.nav-mobile{
    transition: left ease-in-out 0.5s;
    left: 0;
}
 nav .nav-escritorio {
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0,0.7);
    padding: 30px;
    z-index: 5;
    margin: 0;
    box-shadow: 0 0 15px 0.2px rgba(0, 0, 0,0.2);
    font-weight: bold;
}
nav #boton {
   
    border: 0px;
    border-radius: 0;
}
nav div {
    display: block;
}

header i.menu {
    display: block;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 25px;
    right: 20px;
}
main{
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 0;
    margin: 0;
}
main .sobre-mi{
    flex-direction: column;
    align-items: center;
    padding: 50px 0 0 0px;
    justify-content: end;
    border: 1px solid rgba(255, 0, 0, 0.486);
    height: 100%;
}
.sobre-mi .imagen{
    border: 0;
    height: 20%;
    margin: 5% 0 0 0;
    justify-content: center;
    align-items: start;
   
}
.sobre-mi .discover{
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
   
    justify-content: space-around;
    height: 100%;
}
.discover .info-detallada{
    margin: 20px 0;
}
.discover .descripcion{
    height: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
   
}

You might also like