/** {*/
/*  outline: 1px solid red !important;*/
/*}*/

body {
  display: flex;
  flex-direction: column;
  font-family: Roboto, sans-serif;
  background-color: #c5e6fb;
  font-size: 16px;
}

/*----------------------------------------
GENERAL RULES
----------------------------------------*/

section {
  padding: 40px 0 0 0;
}

p {
  font-size: 1.2rem;
}

a {
  text-decoration: none;
  color: #050505;
  text-transform: uppercase;
}

a:hover {
  color: orangered;
  border-bottom: 3px solid orangered;
}

a:active {
  color: purple;
}

.button {
  border: 0;
  padding: 10px 20px;
  background-color: #ef866c;
  width: 80px;
  border-radius: 20px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
}

.button:hover {
  background-color: #ef744b;
}

.button:active {
  box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6);
}

/*----------------------------------------
UTIITY CLASSES
----------------------------------------*/

.styled-break {
  width: 75%;
  height: 5px;
  background-color: #a17df4;
  border-radius: 2.5px;
  margin: 30px auto;
}

/*----------------------------------------
LOGO
----------------------------------------*/

.logo {
  height: 30px;
  margin: 15px 30px;
}

/*----------------------------------------
MAIN NAVBAR
----------------------------------------*/

nav {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
}

.nav-bar {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  /*text-transform: uppercase;*/
  font-size: 1rem;
}

li {
  margin: 15px 5px;
}

/*----------------------------------------
HERO SECTION
----------------------------------------*/

.hero {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.hero-info {
  margin: 30px;
  max-width: 500px;
}

.hero-image {
  width: 500px;
  height: 400px;
  margin: 30px;
}

/* Responsive Hero Sections Rules */
@media only screen and (max-width: 800px) {
  .hero-info {
    max-width: 800px;
  }
  .hero-image {
    visibility: hidden;
    height: 0;
  }
}

h1 {
  font-size: 3rem;
}

/*----------------------------------------
ABOUT ME SECTION
----------------------------------------*/

.about-me {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#name {
  font-size: 45px;
  color: #050505;
}

.about-me-img {
  width: 300px;
  margin: 5px;
  display: flex;
  justify-content: space-evenly;
}

.avatar {
  width: 100px;
  border-radius: 50px;
}

.about-me-info {
  max-width: 300px;
  margin: 30px;
}

/*----------------------------------------
SOCIAL ICONS SECTION
----------------------------------------*/

.social-section {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.far {
  margin: 3px;
  color: #f00;
}

/*----------------------------------------
CONTACT FORM SECTION
----------------------------------------*/

form {
  margin: 0 0 40px 0;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group {
  width: 100%;
  margin: 10px 0;
  display: flex;
}

.input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 5px 0 0;
}

input {
  width: 85%;
}

textarea {
  width: 90%;
  margin-bottom: 20px;
}

/*----------------------------------------
FOOTER SECTION
----------------------------------------*/

footer {
  font-family: Arial, Helvetica, sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links ul {
  list-style-type: none;
}

footer p {
  text-align: center;
  font-size: 0.7rem;
}
