
body {
  font-family: "Open Sans", sans-serif;
  color: #205080;
}

a {
  color: #306090;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}


#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 991px) {
  #main {
    margin-left: 100px;
  }
}




#me {
  width: 100%;
  height: 100vh;
  background: url("./img/me.jpg") top right no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 992px) {
  #me {
    padding-left: 160px;
  }
}

#me:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#me h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #205080;
}

#me p {
  color: #205080;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#me p span {
  color: #306090;
  letter-spacing: 1px;
}

#me .social-links {
  margin-top: 30px;
}

#me .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #306090;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#me .social-links a:hover {
  color: #306090;
}

@media (max-width: 992px) {
  #me {
    text-align: center;
  }

  #me h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #me p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

