@import url('https://fonts.googleapis.com/css?family=Montserrat:300');
@import url('https://fonts.googleapis.com/css?family=Poppins');
@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative');


:root {
  --white: #FFFFFF;
  --light-gray: #E8E9EB;
  --gray: #A7A7A7;
  --dark-gray: #606060;
  --accent: #CCD6F6;
  --dark-blue: #223843;
  --ff-s: 'Montserrat', sans-serif;
  --ff-ss: 'Poppins', sans-serif;
  --ff-sss: 'Cinzel Decorative', cursive;
  --fw-n: 400;
  --fw-b: 600;
}

.html {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color:black;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  opacity: 0.77;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#navbar {
  position: fixed;
  top: -80px;
  width: 100%;
  display: block;
  transition: top 0.3s;
  z-index: 1;
}

#navbar a {
  float: right;
  display: block;
  padding: 15px;
  cursor: pointer;
  color: white;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

body {
  color: var(--dark-gray);
  font-family: var(--ff-s);
  line-height: 1.6;
  background: #223843;
}

h1 {
  color: var(--accent);
  line-height: 1;
  font-size: 3.125rem;
}

h1 span {
  color: var(--accent);
  font-family: var(--ff-ss);
  display: block;
  font-size: 2.5rem;
  letter-spacing: 0.8rem;
  font-family: var(--ff-sss);
}

h2 {
  font-family: var(--ff-s);
  font-size: 2rem;
  color: var(--dark-gray);
  line-height: 1;
  font-weight: var(--fw-n);
}

h1,
h2,
p {
  margin-bottom: 1em;
  margin-top: 0%;
}

h3 {
  color: var(--dark-gray);
  font-family: var(--ff-s);
}

h4 {
  color: var(--dark-blue);
  line-height: 1;
  margin-top: 0;
  margin-bottom: 1em;
}

h5 {
  color: var(--gray);
  line-height: 1;
  margin-top: 0;
  margin-bottom: 1em;
}

p {
  color: var(--white);
}

.welcome {
  background: url(images/aboutme1.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.welcome h1 {
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--white);
  line-height: 1.5;
}

.welcome h1::before {
  content: '';
  display: inline-block;
  width: 80%;
  height: 3px;
  background: var(--white);
  margin: 0 auto 2em;
}

.welcome h1::after {
  content: '';
  display: inline-block;
  width: 80%;
  height: 3px;
  background: var(--white);
  margin: 2em auto 0;
}

.about_me {
  width: 90%;
  margin: 0 auto;
  max-width: 50em;
  margin-top: 5em;
  margin-bottom: 5em;

}

.about_me::after {
  content: '';
  display: block;
  clear: both;
}

.about-picture {
  max-height: 25em;
}


.about-title {
  margin-bottom: .25em;
  font-weight: var(--fw-n);
}

.about-subtitle {
  margin: .2em 0;
  color: var(--white);
}

#myWork{
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
  margin: 5rem 3rem 10rem 3rem;
}

i {
  margin-right: 0.5em;
}

.exp-title {
  text-align: center;
  padding: 0.5em 0;
}

.btn {
  text-decoration: none;
  background: #333;
  color: #fff;
  padding: 0.4rem 1.3rem;
  border-radius: 10px;
}

.btn:hover {
  background: #FEFEFE;
  color: black;
}

.btn2 {
  background: #333;
  color: #fff;
  padding: 0.2rem 0.8rem;
  display: inline-block;
  font-size: 0.8rem;
  border-radius: 20px;
}

.projects {
  padding: 3em 0;
}

.projects h1 {
  text-align: center;
}
.projects h2 {
  margin-top: 0%;
}
#proj1{
  position: relative;
  transition: top ease 0.5s;
  top: 0;
}
#proj1:hover{
  top: -10px;
}

.btn3 {
  display: inline-block;
  width: 20%;
  margin-top: 1em;
  background: var(--dark-gray);
  color: var(--white);
  border-radius: 20px;
}

.btn3:hover {
  background: var(--accent);
  color: var(--dark-gray);
  cursor: pointer;
}

footer {
  background: #101010;
  padding: 3em 0;
  text-align: center;
}

footer i {
  margin: 0.5em;
}
.columns{
  margin-right:0.1rem;
  margin-left: 0.1rem;
}