/*Fuentes*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;700&family=Sedan:ital@0;1&display=swap');
/*Estilos generales*/
body{
    margin: 0px;
    padding: 0px;
    font-family: "Sedan", serif;
}
/*Estilos al menu de navegación*/
.borde{
    border-bottom: 1px solid darkgray;
}
.margen{
    margin-right: 250px;
}
/*Estilos al encabezado y navegacion*/
header{
    width: auto;
    display: flex;
    justify-content: center;
    background-color: rgb(235, 241, 241);
}
header img{
    width: 200px;
    height: 200px;
    margin-top: 50px;
    border-radius: 50%;
    box-shadow: 0px 0px 4px black;
}
/*Estilos a mi nombre*/
.seccion01{
    background-color: rgb(154, 158, 158);
    width: auto;
    text-align: center;
    padding: 2%;
    color: white;
}
/*Estilos seccion acerca de mi*/
.seccion02{
    margin-top: 10px;
    display: flex;
}
.about_me{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(235, 241, 241);
    width: 40%;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    color: gray;
}
.parrafo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    padding: 1%;
    text-align: center;
    box-shadow: 0px 0px 1px black;
    margin-right: 5px;
}
/*Estilos seccion licencias de conducir*/
.drivers{
    background-color: rgb(154, 158, 158);
    width: auto;
    text-align: center;
    padding: 2%;
    margin-top: 10px;
    color: white;
}
.seccion_b1{
    margin-top: 10px;
    display: flex;
}
.b1{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(235, 241, 241);
    width: 40%;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    color: gray;
}
.b1_img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    padding: 1%;
    text-align: center;
    box-shadow: 0px 0px 1px black;
    margin-right: 5px;
}
.seccion_a2{
    margin-top: 10px;
    display: flex;
}
.a2{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(235, 241, 241);
    width: 40%;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    color: gray;
}
.a2_img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    padding: 1%;
    text-align: center;
    box-shadow: 0px 0px 1px black;
    margin-right: 5px;
}
.footer{
    background-color: rgb(154, 158, 158);
    text-align: center;
    padding: 5px;
    margin-top: 10px;
    color: white;
}
/*Responsive Design*/
@media (max-width:600px){
    .seccion02{
        display: flex;
        flex-direction: column;
    }
    .about_me{
        width: auto;
    }
    .parrafo{
        width: auto;
        margin-top: 5px;
    }
    .seccion_b1{
        display: flex;
        flex-direction: column;
    }
    .b1{
        width: auto;
    }
    .b1_img{
        width: auto;
        margin-top: 5px;
        box-shadow: none;
    }
    .seccion_a2{
        display: flex;
        flex-direction: column;
    }
    .a2{
        width: auto;
    }
    .a2_img{
        width: auto;
        margin-top: 5px;
        box-shadow: none;
    }
    .nav{
        display: flex;
        flex-direction: column;
        width: auto;
        right: 0px;
        top: 20px;
        padding: 5px;
        position: absolute;
    }
    .nav a{
        margin-bottom: 10px;
    }
    header img{
        margin-right: 65px;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 150px;
        height: 150px;
    }
}