/* OBJECTS */

body{
    margin: 0;
    padding:0;
    overflow-x: hidden; 
    width: 100%;
    -webkit-font-smoothing: antialiased;
    text-align: center;
}

h1{
    font-size: 40px;
    text-align: center;
}

h2{
    font-size: 30px;
    text-align: center;
}

h3{
    font-size: 20px;
    text-align: center;
}

html {
    scroll-behavior: smooth;
  }

img{
    padding: 30px;
}

button, input {
    overflow: visible;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

p{
    text-align: justify;
}

/* CLASSES */

.bottom{
    text-align: center;
    background-color: #61b159;
}

div.bottom img{
    padding: 10px 0 0 0; 
    width: 45px;
}

div.bottom p{
    text-align: center; 
    padding: 10px 40px 40px 40px;
}

.topnav{
    background-color: #333;
    display: block;
    margin-right: 0;
    margin-left: 0;
    position: fixed;
    width: 100%;
    z-index: 10;
}

.topnav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 30px;
  }

.topnav a img{
    width: 32px; 
    padding: 0;
}

.topnav a:hover {
    background-color: black;
    color: #4CAF50;
    font-size: 30px;
    margin: 0 0;
}

.topnav a.active {
    background-color: #4CAF50;
    color: white;
  }

@media screen and (max-width: 600px) {
    .topnav a{font-size: 15px;}
    .topnav a:hover{font-size: 15px;}
    .topnav a img{width: 15px;}
}

/* ----- HOME  ----- */

/* CLASSES */

.home_container{
    align-items: center;
    align-content: center;
    margin: auto;
    padding: 60px;
    position: absolute;
    top: 0;
    bottom: 10%;
    left: 10%;
    right: 10%;
}

.home_container h1{
    font-size: 40px;
    padding: 10px;
}

.home_container h2{
    font-size: 40px;
    padding: 10px;
}

.home_container .icon_me{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
}

.home_image_bg{
    background-image: url("https://images.pexels.com/photos/2666249/pexels-photo-2666249.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    opacity: 0.5;
    filter:alpha(opacity=40);
}

.icon_me{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}

/* For screen smaller than 600px */
@media screen and (max-width: 600px) {
    .home_container{
        padding: 0;
        padding-top: 30%;
    }
    .home_container h1{
        font-size: 20px;
    }
    .home_container h2{
        font-size: 20px;
        padding-bottom: 10%;
    }
    .home_container .icon_me{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }
}

/* ----- About ----- */

/* SECTIONS */ 

#about{
    min-height: 100vh;
    padding: 45px;
}

.about_container{
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: auto;
    padding: 30px auto;
    min-height: 330px;
}

.about_container p{
    animation: bottom2top;
    animation-duration: 1s;
    animation-iteration-count: 1;
    font-size: 1.3rem;
    line-height: 1.875rem;
    position: relative;
    visibility: visible;
}

.about_container p a{
    color: #1e9422;
}

.about_wrapper{
    margin: 25px auto;
    max-width: 45%;
    width: 100%;
}

.profile_picture{
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
}

@media screen and (max-width: 600px) {

    .about_wrapper{
        margin: 25px auto;
        max-width: 90%;
        width: 100%;
    }
    
    .profile_picture{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

}

/* ----- Skills ----- */

/* SECTIONS */ 

#skills{
    background-color: #d8d7d7;
    clear: both;
    min-height: 100vh;
    padding: 45px;
    z-index: -1;
}

.column_content_left {
    align-items: center;
    width: 750px;
}

.skills__wrapper{
    margin: auto;
    padding: 0;
    width: 100%;
    height: 100%;
}

.skills_container{
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: auto;
    padding: 0;
}

.skills_container h1{
    text-align: center;
}

.skills_container h2{
    text-align: center;
    margin-bottom: 0;
    margin-top: 10px;
}

.skills_container h3{
    text-align: center;
    margin-bottom: 5px;
    margin-top: 10px;
}

.skills_container img{
    height: 32px;
    width: auto;
    padding: 0 30px 0 30px;
    float: center;
}

.technical_habilities {
    display: inline-block;
    font-size: 15px;
    margin: 10px;
    padding: .25rem .5rem;
    background-color: #fff;
    border-radius: .25rem;
}

.technical_habilities:hover{
    background-color: #4CAF50;
}

@media screen and (max-width: 1000px) {
    .column_content_left{
        align-items: center;
        width: 100%;
    }

    .skills_gif{
        display: none;
    }
}

@media screen and (min-width: 1001px) {
    .column_skills{
        float:left; 
        margin:0; 
        width:75%;
    }
}

/* ----- Projects ----- */

/* SECTIONS */ 

#projects{
    min-height: 100vh;
    padding: 45px;
}

.projects_wrapper {
    display: relative;
    margin: auto;
    max-width: 768px;
    width: 100%;
}

.projects_apps{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.projects_apps_div{
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: #333;
    float: center;
    margin: 0 25px;
    height: 200px;
    width: 200px;
    border-radius: .5rem;
    box-shadow: 10px 10px 5px -6px rgb(0 0 0 / 75%);
}

.projects_apps_div img{
    padding: 25px;
}

.projects_apps_middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .projects_apps_div:hover img {
    opacity: 0.2;
  }
  
  .projects_apps_div:hover .projects_apps_middle {
    opacity: 1;
  }
  
  .projects_apps_text {
      position: relative;
    text-align: justify;
    color: rgb(255, 253, 253);
    font-size: 16px;
    width: 150px;
    z-index: 5;
  }

.projects_packages{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.projects_packages_div{
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: #d8d7d7;
    float: center;
    margin: 0 25px;
    height: 200px;
    width: 200px;
    border-radius: .5rem;
    box-shadow: 10px 10px 5px -6px rgb(0 0 0 / 75%);
}

.projects_packages_div img{
    padding: 25px;
}

.projects_packages_middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  
.projects_packages_div:hover img {
    opacity: 0.3;
  }
  
.projects_packages_div:hover .projects_packages_middle {
    opacity: 1;
  }
  
.projects_packages_text {
      position: relative;
    text-align: justify;
    color: black;
    font-size: 16px;
    width: 150px;
    z-index: 0;
  }

.projects_write{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.projects_write_div{
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    float: center;
    margin: 0 25px;
    height: 200px;
    width: 200px;
    border-radius: .5rem;
    box-shadow: 10px 10px 5px -6px rgb(0 0 0 / 75%);
}

.projects_write_div img{
    display: block;
    margin: 0 auto;
    padding: 25px;
}

.projects_write_div img:hover, 
.projects_write_div img:focus{
    transform: scale(1.1);
}

/* ----- Contact ----- */

/* SECTIONS */ 

#contact{
    background-color: #d8d7d7;
    clear: both;
    min-height: 100vh;
    padding: 45px;
}

@media screen and (max-width: 500px) {
    #contact{min-height: 50vh;}
}

/* OBJECTS */

form{
    text-align: center;
}

input{
    text-align: center;
}

textarea{
    text-align: center;
}

/* CLASSES */

.form_button {
    background-color: #61b159;
    color: #fff;
    font-weight: 600px;
    padding: 12px 0;
    border-radius: 25px;
    border: 1px solid #050505;
    margin-top: 30px;
    margin-bottom: 60px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.5);
    cursor: pointer;
    width: 200px;
}

.form_button:hover, .form_button:focus{
    transform: scale(1.3);
}

.form_input {
    -webkit-appearance: none;
    -moz-appearance: none;
    flex-direction: column;
    appearance: none;
    width: 100%;
    height: 45px;
    margin: 7px 0;
    -webkit-padding-start: 15px;
    padding-inline-start: 15px;
    border: 2px solid #030303;
    border-radius: 6px;
}

.form__wrapper {
    align-items: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
    width: 100%;
}

.icon-bar div a {
    float: left;
    width: 25%;
    text-align: center;
    padding: 0;
    color: rgb(3, 3, 3);
    font-size: 48px;
}

.icon-bar div a:hover {
    float: left;
    width: 25%;
    text-align: center;
    padding: 0;
    color: #4CAF50;
    font-size: 48px;
    overflow: hidden;
}

.socialmedia_row::after {
    content: "";
    padding: 25px;
}

@media screen and (max-width: 600px) {
    .form__wrapper .input{
        width: 80%;
    }
}

@media screen and (min-width: 1800px) {

    div label{
        font-size: 25px;
    }

    div input{
        font-size: 25px;
    }

    div textarea{
        font-size: 25px;
    }

    .form_button {
        border: 2px solid #050505;
        height: 60px;
        width: 300px;
    }

    .icon-bar div a{
        font-size: 70px;
    }
    
    .icon-bar div a:hover {
        font-size: 70px;
    }

}