/* RESETS */
* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;

}

a {
  color: black;
  text-decoration: none;
}


/* GLOBAL CLASSES */
.text-center {
  text-align: center;
}

.align-items {
  align-items: center;
}

.flexC {
  display: flex;
  flex-direction: column;
}

.flexH {
  display: flex;
}




/* Header/Nav */
#logo {
  max-width: 80px;
}

header {
  padding: 11px;
  border-bottom: solid 12.5px blue;
  width: 100%;
  background: white;
}

/*HERO SECTION, HELLO WORLD */

#text-title {
  font-size: 40px;
}

.hello_world div p {
  padding: 5px;
}

.hello_world div:first-child {
  font-size: 40px;

}

.emojis {
  font-size: 20vw;
  padding: 25px;

}

.selfie_intro {
  gap: 10px;
}

.selfie_intro div:first-child {
  font-size: 25px;
}

.selfie_intro div:nth-of-type(2) p {
  font-size: 16px;
  color: rgb(112, 112, 112);
}

#full_stack_developer {
  color: rgb(255, 222, 52);
  background: black;
  justify-content: center;
}

#rodolfoText {
  color: white;
  background: black;
}


/* SELFIE IMAGE */

#selfie {
  width: auto;
  height: 58vw;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Projects */

#firstContainer {
  height: 120vw;
  width: auto;
  border: solid 5px;
  border-color:blue;
  justify-content: space-evenly;

}
#firstContainer h3 {
  margin-top: 20px;
}

#firstContainer img {
  height: auto;
  width: 65vw;
  margin-bottom: 40px;
}

/* gitHub repository and deployed site buttons */

.buttonContainer {
  background-color: black;
  color: white;
  height: 45px;
  width: auto;
}
.buttonContainer a {
  color: white;
}
.buttonContainer:hover a {
  color: black;
}
.buttonContainer:hover {
  background-color: white;
  color: black;
  height: 45px;
  width: auto;
}

.bothSections {
  margin-top: 50px;
}

.textButton p {
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 13px;
}

/* 4 projects below the main one */
.work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border: solid 5px;
}

.work img{
  max-width: 100%;
  max-height: 100%;
  height: auto; /
}

.border_article {
  border: solid 3px;
  border-color: red;
}

.border_article:hover {
  border: solid 3px;
  border-color: blue;
}

.articleImg {
  height: 40vw;
  width: auto;
}



/* About section */


#about_section {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}


#about_section h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Arial', sans-serif;
}


#about_section p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  font-family: 'Arial', sans-serif;
}


@media (max-width: 767px) {
  #about_section {
    padding: 20px;
  }

  #about_section h1 {
    font-size: 28px;
  }

  #about_section p {
    font-size: 16px;
  }
}




/* Contact Me Section */



#contact_me {
  padding: 30px;
  background-color: black;
  color: white;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
}


#contact_me h1 {
  font-size: 36px;
  margin-bottom: 20px;
}


#contact_me form div {
  margin-bottom: 15px;
}

#contact_me form label {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

#contact_me form input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#submit_button {
  background-color: white;
  color: black;
  height: 45px;
  width: 100px;
}

#submit_button:hover {
  background-color: black;
  color: white;
  height: 45px;
  width: 100px;
}


@media (max-width: 767px) {
  #contact_me {
    padding: 20px;
  }

  #contact_me h1 {
    font-size: 28px;
  }

  #contact_me form label {
    font-size: 16px;
  }

  #contact_me form input {
    font-size: 14px;
  }
}





/* Footer */
footer {
  color: white;
  border-top: solid 10px rgb(255, 0, 0);
  background: black;

}



/* PROFILE -TABLET/DESKTOP MIN 750PX  */
@media (min-width: 750px) {

  header {
    border-bottom: solid 12.5px red;
  }

  #selfie {
    width: auto;
    height: 28vw;
    margin-top: 20px;
  }


  .emojis {
    font-size: 10vw;
    padding: 25px;
  
  }
  #firstContainer {

    height: 20%;
  }

  

 main{ 
  display: flex;
}
#main750 {
  display: flex;
  align-items: center;
  margin-left: 100px;
}

#selfie {
  order: 2; 
}
  

  #selfie {
    width: auto;
    height: 28vw;
    margin-top: 80px;
  }

  #firstContainer img {
    height: auto;
    width: 35vw;
  }

};