html {
  scroll-behavior: smooth;
}

body {
  font-family: "Alata", sans-serif;
  transition: all 2s;
  overflow-x: hidden;
}

#home {
  transition: all 2s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 1;
}
#home1 {
  height: 600px;
  background-color: teal;

  background-size: cover;
  background-repeat: no-repeat;
}

a:active {
  text-decoration: underline;
  border-bottom: teal 2px;
}
.mystr {
  padding-top: 200px;
}

.mystr h2 {
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 3.75em;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: white;
}

.mystr h3 {
  font-size: 1.625em;
  font-family: "ff-meta-serif-web-pro", Georgia, serif;
  line-height: 1.30769em;
  padding: 0 10%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: white;
}
#name {
  border: solid 2px green;
  border-color: #fff;
  color: #fff;
  width: 20%;
  margin: 3.75em auto 0 auto;
  font-size: 1em;
  padding: 0.5em;
  padding-top: 1em;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
  cursor: pointer;
}

a {
  color: white;
}

#name:hover {
  color: teal;
  background-color: white;
}

#name a:hover {
  color: teal;
}

.navbar {
  background-color: transparent;
  box-shadow: "0 0 5px grey";
  transition: all 0.3s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.navbar .navbar-nav .nav-link {
  color: white;
}

.navbar .navbar-nav .nav-link:hover {
  color: white;
}

.nav-item {
  padding-right: 70px;
  font-family: "Lato", sans-serif;
  font-weight: bolder;
}

.navbar-nav li:last-of-type {
  padding-right: 10px;
}

.scrolled {
  background-color: white;
  color: teal !important;
  box-shadow: grey 3px;
}

#profile-pic {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}

.front-end {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-left: 50px;
  right: 0;
}

.back-end {
  width: 150px;
  height: 150px;
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s cubic-bezier(0.88, -0.99, 0, 1.81);
  transition: all 0.4s cubic-bezier(0.88, -0.99, 0, 1.81);
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.88, -0.99, 0, 1.81);
  transition: all 0.4s cubic-bezier(0.88, -0.99, 0, 1.81);
}

.hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: translatey(-100px);
  -ms-transform: translatey(-100px);
  transform: translatey(-100px);
  -webkit-transition: all 0.4s cubic-bezier(0.88, -0.99, 0, 1.81);
  transition: all 0.4s cubic-bezier(0.88, -0.99, 0, 1.81);
  padding: 10px;
}

.hovereffect a.info {
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 20px 0 0;
  padding: 7px 14px;
}

.hovereffect a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect:hover img {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}

.hovereffect:hover h2,
.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-transform: translatey(0);
  -webkit-transform: translatey(0);
  transform: translatey(0);
}

.hovereffect:hover a.info {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
