@import url('https://fonts.googleapis.com/css2?family=Contrail+One&family=Rubik+Dirt&display=swap');
*{
    margin: 0;
    padding: 0;
}
.navbar{
 padding: 2rem; 
 background-color:red;
}
.navbar-collapse {
 justify-content: space-between;
 align-items: center;
}
.foto-circulo{
 width: 200px;
 height: 200px;
 border-radius: 50%;
 border: solid white;
 margin: 20px;
}
.hero{
 min-height: auto;
 text-align: center;
}
section{
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}
/* estilos generales */
h1{
 font-size: 2.5rem;
}
p{
    font-size: 1.5rem;
}
button.btn.btn-info {
  font-size: 1.1rem;
  margin: 20px;
  font-weight: bold;
  color: white;
}

.hero-principal {
 padding: 3rem;
 font-family: "Contrail One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.hero-principal h2 {
 font-size: 1.5rem;
 color: rosybrown;
}@media(max-width :480px){

p{
    font-size: 1rem;
}
}
@media screen and (min-width: 700px) {
.hero-inferior-imagen{
    max-width: 10px;
}

}
.seccion-oscura {
    color: white;
    background-color: red;
}
.seccion-clara {
    color: black;
    background-color: #ffff;
}
.sobre-mi{
    height: 500px;
  padding: 10px;
}

.sobre-mi .contenedor {
   max-width: 100%;
   text-align: center;
}
.seccion-titulo{
 font-size: 2rem;
 padding: 15px 0;
 font-family: "Contrail One", sans-serif;
}
.seccion-descripcion{
    font-size: 1.2rem;
    color: #584e4e;
}
.experiencia {
    padding: 40px 40px 60px 40px;
}
.experiencia .row div {
  height: 450px; 
}
.experiencia .columna {
  padding: 20px;
  border: 2px solid #8080804d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.2s ease-in;
}
.experiencia .columna:hover {
    color: white;
    background-color:red;
}
.experiencia-titulo {
   font-size: 25px;
   font-weight: bold;
   margin: 10px 0;
}
.experiencia i {
    font-size: 2.5rem;
    color: red;
}
.badges-contenedor{
 font-size: 20px;
 font-weight: bold;
 margin: 10px 0;
}
.badges{
 margin: 5px;
}

.texto-negro {
    color: black;
}

.texto-blanco {
    color: white;
}

.proyectos {
    position: relative;
    overflow: hidden;
    width: 360px;
    height: 400px;
}

.proyectos img {
    height: 100%;
    width: auto;
    padding: 10px;
    border-radius: 10px;
    display: block;
    transition: all 0.2s ease;
}


.proyectos-contenedor {
    padding-top: 60px;
    margin-bottom: 40px;
}

.overlay {
    transition: all 0.2s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.proyectos:hover .overlay {
    opacity: 1;
}

.proyectos:hover img {
    opacity: 0.2;
}

.overlay p {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 0;
}

.overlay .iconos-contenedor {
  display: flex;
}
.overlay a {
   color: black;
   font-size: 60px;
   margin: 10px;
}
/* articulos */
.articulos {
    min-height: 500px;
    padding: 30px;
}
.articulos .card {
width: 80%;
max-width: 800px;
margin: 20px;
}
.articulos .card-header{
font-weight: bold;
}
footer{
    min-height: 500px;
}
.footer-logo {
    width: 500px;
    margin: 10px;
    
}
.footer-texto {
    font-size: 1.5rem;
    padding: 20px;
    margin-bottom: 30px;
    gap: 20px;
}
.iconos-redes-sociales a:hover {
    color: black; 
    background-color:rosybrown;
    transform: scale(1.1);
}
.iconos-redes-sociales a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    margin: 10px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.2s ease-in;
    cursor: pointer;
}
.iconos-redes-sociales i{
    color: white;
    font-size: 1.5rem;
    transition: all 0.2s ease-in;
}
body, html {
  width: 100%;
  overflow-x: hidden;
}
