html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
}

.bodyCenter {
    background-color: #002c37;
    color: white;
    position: relative;
    text-align: center;
}
.bodyCenter:before {
    content: "";
    position: relative;
    float: left;
    width: 0;
    height: 100%;
    vertical-align: top;
}
.wrapperCenter {
    float: left;
    vertical-align: top;
}

.mainHelloWorld {
    width: 30%;
    margin-top: 60px;
}

.mainPhoto {
    width: 100%;
    max-width: 200px;
    margin-top: 10px;
    border-radius: 20px;
}

.handPhoto {
    width: 30px;
    margin-left: -1%;
}

.mainDescription {
    width: 80%;
    max-width: 500px;
    margin: auto;
}

.category-separation {
    margin-top: 120px;
}

.category-container {
    display: flex;
    justify-content: center;
    margin-inline: 50px;
}

.title {
    font-size: 25px;
}

hr {
    border: none;
    height: 1px;
    background-image: linear-gradient(
        90deg,
        rgba(13, 13, 13, 0.05) 0%,
        rgba(96, 95, 95, 0.488) 35%,
        rgba(13, 13, 13, 0.053658963585434205) 100%
    );
}

.portfolio-images-container div a:hover {
    color: #007bb6 !important;
}

.portfolio-container {
    margin-top: -60px;
}

.portfolio-images-container {
    margin-top: 4vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin: 2px;
}

.portfolio-images-container div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px;
    max-width: 500px;
}

.portfolio-images-container div a:hover {
    color: black;
}

.portfolio-images-container div a img:hover {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.817);
}

.portfolio-images-container a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    font-size: 22px;
    text-decoration: none;
    font-weight: bold;
    color: #fff3f3;
}

.portfolio-container h4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -20px;
}

.img-portfolio {
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.6);
}

.for-vertical-gif {
    background-image: url("../Assets/projects/venturaBG.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 600px;
    margin-top: 60px !important;
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.6);
    vertical-align: top;
    max-height: 300px;
}
.img-portfolio-vertical-gif {
    vertical-align: top;
    display: inline-flex;
    align-items: center;
    width: 38%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.6);
    margin-top: -14%;
}

.skills-learning-icons-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -50px;
}

.skills-learning-icons-container div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px;
}

.skills-learning-icons-container div img {
    width: 100%;
    max-width: 100px;
    margin-right: 10px;
    background-color: rgba(101, 101, 101, 0.098);
    padding: 20px;
    border-radius: 10px;
}

.skills-learning-icons-container div p {
    /* <---Pendiente */
    opacity: 0;
}

/*
.skills-learning-icons-container div img:hover {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.817);
}
*/

.skills-learning-icons-container div p:hover {
    /*<---Pendiente */
    opacity: 1;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
}

.contact-section {
    margin-top: 0%;
    margin-bottom: 5%;
}

.img-contacto {
    height: 50px;
    margin: 10px;
    margin-bottom: 30px;
}

.img-contacto:hover {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.817);
    border-radius: 10px 10 11px 10px;
}

.icon-container {
    position: relative;
}

.icon {
    display: inline-flex;
    width: 100%;
    height: 100%;
}

.skill-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 80%;
    height: 0%;
    opacity: 0.3;
    transition: 0.3s ease-in-out;
}

.icon-container:hover .skill-overlay {
    height: 120%;
    opacity: 1;
}

.skill-text {
    white-space: nowrap;
    color: white;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    top: 1%;
    left: 40%;
    transform: translate(-50%, -10%);
    -ms-transform: translate(110%, -150%);
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    background: linear-gradient(
        90deg,
        rgba(0, 44, 55, 0.05) 0%,
        rgba(0, 69, 86, 0.488) 50%,
        rgba(0, 44, 55, 0.053658963585434205) 100%
    );
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

#navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background-color: #003c4b;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        rgba(0, 44, 55, 0.05) 0%,
        rgba(0, 69, 86, 0.488) 35%,
        rgba(0, 44, 55, 0.053658963585434205) 100%
    );

    margin-top: 0px;
    margin-left: 5px;
    margin-right: 5px;

    z-index: 9;
}

.navbar-link {
    display: inline-block;
    font-size: 22px;
    text-decoration: none;
    border-radius: 10px;
    color: white;
    padding: 10px;
}

.navbar-link:hover {
    color: #007bb6;
    border-radius: 10px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
    padding-top: 60px;
}

#top {
    margin-bottom: -40px;
}

.link-as-p {
    font-weight: lighter !important;
    font-size: small !important;
    color: #007bb6 !important;
    text-decoration: underline !important;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 5px; /* 5px rounded corners */
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    padding-top: 10px;
    margin-top: 20px;
    background-color: rgba(101, 101, 101, 0.098);
}

.card-experience {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 5px; /* 5px rounded corners */
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    padding-top: 10px;
    margin-top: 20px;
    background-color: rgba(101, 101, 101, 0.098);
}

.ul-lista {
    list-style-type: none;
    text-align: left;
    letter-spacing: 1px;
    line-height: 150%;
}

.ul-lista-with-dots {
    text-align: left;
    letter-spacing: 1px;
    line-height: 150%;
}

h4 {
    font-weight: lighter;
    line-height: 150%;
}

.about-icon-link {
    height: 20px;
}

.btn-space {
    margin: 0 10px;
}

.menu-full-screen,
#myBtnMenu {
    display: none;
}

@media only screen and (max-width: 1100px) and (orientation: portrait) {
    .mainHelloWorld {
        width: 90%;
        margin-top: 60px;
    }

    .mainPhoto {
        width: 90%;
        max-width: 500px;
        margin-top: 10px;
    }

    .about {
        font-size: 300%;
    }

    .handPhoto {
        width: 60px;
        margin-left: -1%;
    }

    .mainDescription {
        width: 80%;
        max-width: 80%;
        margin: auto;
        text-align: left;
    }

    .about-icon-link-block {
        text-align: center !important;
    }

    .about-icon-link {
        height: 90px;
    }

    .btn-space {
        margin: 0 50px;
    }

    .title {
        font-size: 500%;
    }

    hr {
        height: 5px;
        background-image: linear-gradient(
            90deg,
            rgba(13, 13, 13, 0.05) 0%,
            rgba(96, 95, 95, 0.488) 35%,
            rgba(13, 13, 13, 0.053658963585434205) 100%
        );
    }

    .card-experience {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        transition: 0.3s;
        border-radius: 20px; /* 5px rounded corners */
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding: 40px;
        padding-top: 10px;
        margin-top: 20px;
        background-color: rgba(101, 101, 101, 0.098);
    }

    .container {
        font-size: 300%;
    }

    .titulos-img-portfolio {
        font-size: 50px !important;
        color: #00aeff !important;
        text-decoration: underline !important;
    }

    .project-card {
        width: 85% !important;
        max-width: 85% !important;
        font-size: 50px !important;
    }

    .link-as-p {
        width: 85% !important;
        max-width: 85% !important;
        font-size: 30px !important;
    }

    .img-portfolio {
        width: 100% !important;
        max-width: 100% !important;
    }

    .for-vertical-gif {
        background-image: url("../Assets/projects/venturaBG.png");
        background-size: 500px;
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 60px !important;
        display: inline-flex;
        align-items: center;
        border-radius: 10px;
        box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.6);
        vertical-align: top;
        height: 500px !important;
        max-height: 500px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .img-portfolio-vertical-gif {
        vertical-align: top;
        display: inline-flex;
        align-items: center;
        width: 64% !important;
        max-width: 600px !important;
        border-radius: 10px;
        box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.6);
        margin-top: -16% !important;
    }

    .img-contacto {
        height: 90px;
        margin: 10px;
        margin-bottom: 30px;
    }

    #myBtn {
        font-size: 40px; /* Increase font size */
        width: 30% !important;
        height: 150px !important;
    }

    .card {
        width: 80% !important;
        max-width: 80% !important;
    }

    .navbar-link {
        font-size: 50px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .title {
        margin-top: 230px !important;
    }

    /* ================= */
    .navbar {
        display: none !important;
    }
    #myBtnMenu {
        display: block;
        position: fixed; /* Fixed/sticky position */
        top: 20px; /* Place the button at the bottom of the page */
        right: 30px; /* Place the button 30px from the right */
        z-index: 98; /* Make sure it does not overlap */
        border: none; /* Remove borders */
        outline: none; /* Remove outline */
        color: white; /* Text color */
        cursor: pointer; /* Add a mouse pointer on hover */
        padding: 15px; /* Some padding */
        border-radius: 10px; /* Rounded corners */
        background: linear-gradient(
            90deg,
            rgba(0, 44, 55, 0.05) 0%,
            rgba(0, 69, 86, 0.488) 50%,
            rgba(0, 44, 55, 0.053658963585434205) 100%
        );
        font-size: 40px; /* Increase font size */
        width: 30% !important;
        height: 150px !important;
    }
    .menu-full-screen {
        background: linear-gradient(
            90deg,
            rgba(0, 44, 55, 0.05) 0%,
            rgba(0, 69, 86, 0.488) 50%,
            rgba(0, 44, 55, 0.053658963585434205) 100%
        );
        z-index: 89;
        width: 100%;
        height: 100%;
        position: fixed;
        background-color: var(--black);
        overflow: hidden !important;
    }

    .menu-box {
        background-color: #002c37;
        color: white;
        width: 100% !important;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        padding: 10%;
        font-weight: bold;
        font-size: 90px !important;
    }
    .menu-navbar-link {
        color: white;
        text-decoration: none;
        text-align: center;
    }
}

.center-github-snake {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
}
