﻿
/* General styles */
* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: lightgray;
    min-height: 1000px;
}

/* Page container */
.allContent {
    margin: 10px;
    display: flex;
    align-items: stretch; /* Asegura que ambos divs secundarios tengan la misma altura */
    min-height: 900px;
    position: relative;
}

/* Left side */
.leftRight {
    background-color: white;
    flex: 0 0 33%; /* 33% del ancho del contenedor */
    margin: 16px 5px;
    box-shadow: 3px 3px 5px 4px gray;
    overflow: auto; /* Permite scroll si el contenido desborda */
}

.Top img {
    width: 100%;
}

.jane {
    margin: -50px 0 0 20px;
    font-size: 27px;
    color: #808080;
    text-align: center;
}

/* Skills */
.partTwo {
    margin: 30px 20px;
}

    .partTwo p {
        color: gray;
    }

i {
    /*color: teal;*/
    margin-right: 20px;
    font-size: 20px;
}

hr {
    color: lightgray;
    margin: 0 30px;
}

.star {
    font-size: 20px;
}

.outside {
    background-color: lightgray;
    border-radius: 15px;
}

.inside {
    background-color: teal;
    border-radius: 15px;
    color: white;
}

#ninty {
    width: 90%;
}

#eighty {
    width: 80%;
}

#seventy-five {
    width: 75%;
}

#fifty {
    width: 50%;
}

#one-hundred {
    width: 100%;
}

#fifty-five {
    width: 55%;
}

#tweny-five {
    width: 25%;
}

/* Right side */
.rightLeft {
    flex: 0 0 67%; /* 67% del ancho del contenedor */
    margin: 15px -8px 15px 5px;
    box-shadow: 3px 3px 5px 4px gray;
    display: flex; /* Activa flexbox */
    flex-direction: column; /* Apila los hijos en columna */
    height: auto; /* Ajusta la altura al contenido */
    overflow: hidden; /* Elimina cualquier scroll */
}

/* Experience and education sections */
.partRight {
    background-color: white;
    box-shadow: 3px 3px 5px 4px gray;
    flex: 1; /* Permite que partRight ocupe todo el espacio vertical disponible */
    overflow: hidden; /* Asegura que no haya scroll en partRight */
}

.com {
    margin: 0 30px;
}

    .com h5 {
        color: gray;
        font-size: 16px;
    }

.icon {
    margin: 20px 0 5px 0;
    padding: 32px 0 0;
    color: gray;
}

    .icon i {
        font-size: 35px;
    }

h6 {
    color: teal;
    margin: 10px 0;
    font-size: 15px;
}

span {
    color: white;
    /*background-color: teal;*/
    padding: 3px 8px;
    border-radius: 5px;
}

.end {
    padding-bottom: 50px;
}

/* Framework */
.center {
    text-align: center;
}

.pad-top {
    padding-top: 85px;
}
/* Media queries for small screens */
@media (max-width: 420px) {
    .allContent {
        display: block; /* Cambia a diseño en bloque */
    }

    .leftRight,
    .rightLeft {
        width: 100%;
        height: auto; /* Ajusta la altura automáticamente */
    }
    .pad-top {
        padding-top: 0px;
    }
}

@media (max-width: 640px) {
    .allContent {
        display: block; /* Cambia a diseño en bloque */
    }

    .leftRight,
    .rightLeft {
        width: 100%;
        height: auto; /* Ajusta la altura automáticamente */
    }
    .pad-top {
        padding-top: 0px;
    }
}

@media (max-width: 992px) {
    .pad-top {
        padding-top: 0px;
    }
}